mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0025255: API to control storage with triangulation in BinTools
Method to govern writing shape with or without triangles added
This commit is contained in:
parent
4f93349381
commit
d780e37a83
@ -50,6 +50,10 @@ is
|
||||
Clear (me:mutable);
|
||||
---Purpose: Clear myShapeSet
|
||||
|
||||
SetWithTriangles(me: mutable; isWithTriangles : Boolean from Standard);
|
||||
---C++: inline
|
||||
---Purpose: set whether to store triangulation
|
||||
|
||||
SetFormatNb(me: mutable; theFormat : Integer from Standard);
|
||||
---C++: inline
|
||||
---Purpose: set the format of topology
|
||||
|
@ -33,6 +33,16 @@ inline void BinMNaming_NamedShapeDriver::SetFormatNb(const Standard_Integer theF
|
||||
myFormatNb = theFormatNb;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : SetWithTriangles
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
inline void BinMNaming_NamedShapeDriver::SetWithTriangles(const Standard_Boolean isWithTriangles)
|
||||
{
|
||||
myShapeSet.SetWithTriangles(isWithTriangles);
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : GetShapesLocations
|
||||
//purpose :
|
||||
|
@ -41,6 +41,9 @@ is
|
||||
Delete(me:out) is virtual;
|
||||
---C++: alias "Standard_EXPORT virtual ~BinTools_ShapeSet(){Delete() ; }"
|
||||
|
||||
SetWithTriangles(me : out; isWithTriangles : Boolean) is static;
|
||||
---Purpose: Define if shape will be stored with triangles
|
||||
|
||||
SetFormatNb(me : out; theFormatNb : Integer) is static;
|
||||
|
||||
FormatNb(me) returns Integer is static;
|
||||
|
@ -80,6 +80,15 @@ BinTools_ShapeSet::BinTools_ShapeSet(const Standard_Boolean isWithTriangles)
|
||||
void BinTools_ShapeSet::Delete()
|
||||
{}
|
||||
|
||||
//=======================================================================
|
||||
//function : SetWithTriangles
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
void BinTools_ShapeSet::SetWithTriangles(const Standard_Boolean isWithTriangles)
|
||||
{
|
||||
myWithTriangles = isWithTriangles;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : SetFormatNb
|
||||
//purpose :
|
||||
|
Loading…
x
Reference in New Issue
Block a user