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:
parent
0929d0ef20
commit
0794c042bd
@ -143,6 +143,13 @@ is
|
|||||||
---Purpose: Gives the sewed shape
|
---Purpose: Gives the sewed shape
|
||||||
-- a null shape if nothing constructed
|
-- a null shape if nothing constructed
|
||||||
-- may be a face, a shell, a solid or a compound
|
-- 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;
|
NbFreeEdges(me) returns Integer;
|
||||||
---Purpose: Gives the number of free edges (edge shared by one face)
|
---Purpose: Gives the number of free edges (edge shared by one face)
|
||||||
|
@ -4725,3 +4725,22 @@ NCollection_CellFilter_Action BRepBuilderAPI_VertexInspector::Inspect (const Sta
|
|||||||
myResInd.Append (theTarget);
|
myResInd.Append (theTarget);
|
||||||
return CellFilter_Keep;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user