1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0024403: BRepBuilderAPI_Sewing should have get/set Context methods

Methods to get/set context introduced
This commit is contained in:
ibs 2013-11-27 17:11:25 +04:00 committed by abv
parent 0929d0ef20
commit 0794c042bd
2 changed files with 26 additions and 0 deletions

View File

@ -143,6 +143,13 @@ is
---Purpose: Gives the sewed shape
-- a null shape if nothing constructed
-- may be a face, a shell, a solid or a compound
SetContext(me : mutable; theContext : ReShape from BRepTools);
---Purpose: set context
GetContext(me) returns ReShape from BRepTools;
---C++: return const &
---Purpose: return context
NbFreeEdges(me) returns Integer;
---Purpose: Gives the number of free edges (edge shared by one face)

View File

@ -4725,3 +4725,22 @@ NCollection_CellFilter_Action BRepBuilderAPI_VertexInspector::Inspect (const Sta
myResInd.Append (theTarget);
return CellFilter_Keep;
}
//=======================================================================
//function : Context
//purpose :
//=======================================================================
const Handle(BRepTools_ReShape)& BRepBuilderAPI_Sewing::GetContext() const
{
return myReShape;
}
//=======================================================================
//function : SetContext
//purpose :
//=======================================================================
void BRepBuilderAPI_Sewing::SetContext(const Handle(BRepTools_ReShape)& theContext)
{
myReShape = theContext;
}