mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-16 02:28:35 +05:00
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
#include <BlockFix_BlockFixAPI.hxx>
|
|
|
|
//=======================================================================
|
|
//function : Shape
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline void BlockFix_BlockFixAPI::SetShape(const TopoDS_Shape& Shape)
|
|
{
|
|
myShape = Shape;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Shape
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline TopoDS_Shape BlockFix_BlockFixAPI::Shape() const
|
|
{
|
|
return myShape;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Context
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Handle(ShapeBuild_ReShape)& BlockFix_BlockFixAPI::Context()
|
|
{
|
|
return myContext;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Tolerance
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Standard_Real& BlockFix_BlockFixAPI::Tolerance()
|
|
{
|
|
return myTolerance;
|
|
}
|
|
|