mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-21 10:13:43 +03:00
37 lines
1002 B
C++
Executable File
37 lines
1002 B
C++
Executable File
// File: ShapeAlgo_ToolContainer.cxx
|
|
// Created: Mon Feb 7 12:26:09 2000
|
|
// Author: data exchange team
|
|
// <det@nnov>
|
|
|
|
|
|
#include <ShapeAlgo_ToolContainer.ixx>
|
|
|
|
//=======================================================================
|
|
//function : ShapeAlgo_ToolContainer
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
ShapeAlgo_ToolContainer::ShapeAlgo_ToolContainer()
|
|
{
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : FixShape
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(ShapeFix_Shape) ShapeAlgo_ToolContainer::FixShape() const
|
|
{
|
|
return new ShapeFix_Shape;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : EdgeProjAux
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(ShapeFix_EdgeProjAux) ShapeAlgo_ToolContainer::EdgeProjAux() const
|
|
{
|
|
return new ShapeFix_EdgeProjAux;
|
|
}
|