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);
|
Clear (me:mutable);
|
||||||
---Purpose: Clear myShapeSet
|
---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);
|
SetFormatNb(me: mutable; theFormat : Integer from Standard);
|
||||||
---C++: inline
|
---C++: inline
|
||||||
---Purpose: set the format of topology
|
---Purpose: set the format of topology
|
||||||
|
@ -33,6 +33,16 @@ inline void BinMNaming_NamedShapeDriver::SetFormatNb(const Standard_Integer theF
|
|||||||
myFormatNb = theFormatNb;
|
myFormatNb = theFormatNb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : SetWithTriangles
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
|
||||||
|
inline void BinMNaming_NamedShapeDriver::SetWithTriangles(const Standard_Boolean isWithTriangles)
|
||||||
|
{
|
||||||
|
myShapeSet.SetWithTriangles(isWithTriangles);
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : GetShapesLocations
|
//function : GetShapesLocations
|
||||||
//purpose :
|
//purpose :
|
||||||
|
@ -41,6 +41,9 @@ is
|
|||||||
Delete(me:out) is virtual;
|
Delete(me:out) is virtual;
|
||||||
---C++: alias "Standard_EXPORT virtual ~BinTools_ShapeSet(){Delete() ; }"
|
---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;
|
SetFormatNb(me : out; theFormatNb : Integer) is static;
|
||||||
|
|
||||||
FormatNb(me) returns 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()
|
void BinTools_ShapeSet::Delete()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : SetWithTriangles
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
void BinTools_ShapeSet::SetWithTriangles(const Standard_Boolean isWithTriangles)
|
||||||
|
{
|
||||||
|
myWithTriangles = isWithTriangles;
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : SetFormatNb
|
//function : SetFormatNb
|
||||||
//purpose :
|
//purpose :
|
||||||
|
Loading…
x
Reference in New Issue
Block a user