SHAPER
9.13.0
|
The abstract class MakeSweep is the root class of swept primitives. More...
Public Types | |
enum | BuilderType { Unknown , OCCT_BRepBuilderAPI_MakeShape , OCCT_BOPAlgo_Builder } |
Builder type enum. More... | |
Public Member Functions | |
GEOMALGOAPI_EXPORT const ListOfShape & | fromShapes () const |
GEOMALGOAPI_EXPORT const ListOfShape & | toShapes () const |
GEOMALGOAPI_EXPORT void | addFromShape (const std::shared_ptr< GeomAPI_Shape > theShape) |
Adds a shape to list of from shape. More... | |
GEOMALGOAPI_EXPORT void | setFromShapes (const ListOfShape &theListOfShapes) |
Sets from shapes. More... | |
GEOMALGOAPI_EXPORT void | addToShape (const std::shared_ptr< GeomAPI_Shape > theShape) |
Adds a face to list of to shape. More... | |
GEOMALGOAPI_EXPORT void | setToShapes (const ListOfShape &theListOfShapes) |
Sets to shapes. More... | |
GEOMALGOAPI_EXPORT void | init (const ListOfMakeShape &theMakeShapeList) |
Initializes a class with new list of algorithms. More... | |
GEOMALGOAPI_EXPORT const ListOfMakeShape & | list () const |
GEOMALGOAPI_EXPORT void | appendAlgo (const GeomMakeShapePtr theMakeShape) |
Adds algo to the end of list. More... | |
virtual GEOMALGOAPI_EXPORT const GeomShapePtr | shape () const |
virtual GEOMALGOAPI_EXPORT void | generated (const GeomShapePtr theShape, ListOfShape &theHistory) |
virtual GEOMALGOAPI_EXPORT void | modified (const GeomShapePtr theShape, ListOfShape &theHistory) |
virtual GEOMALGOAPI_EXPORT bool | isDeleted (const GeomShapePtr theShape) |
template<class T > | |
void | initialize (T *theBuilder, const BuilderType theBuilderType=OCCT_BRepBuilderAPI_MakeShape) |
Initializes internals. More... | |
virtual GEOMALGOAPI_EXPORT void | build () |
Execute the algorithm. More... | |
GEOMALGOAPI_EXPORT bool | isDone () const |
GEOMALGOAPI_EXPORT bool | isValid () const |
GEOMALGOAPI_EXPORT std::shared_ptr< GeomAPI_DataMapOfShapeShape > | mapOfSubShapes () const |
GEOMALGOAPI_EXPORT void | modifiedCached (const GeomShapePtr theOldShape, ListOfShape &theNewShapes) |
Get a list of new shapes, modified from the given old shape. More... | |
virtual GEOMALGOAPI_EXPORT bool | check () |
virtual GEOMALGOAPI_EXPORT void | prepareNamingFaces () |
Prepare the naming of faces. More... | |
GEOMALGOAPI_EXPORT std::map< std::string, GeomShapePtr > | getCreatedFaces () |
GEOMALGOAPI_EXPORT std::string | getError () |
GEOMALGOAPI_EXPORT bool | checkValid (std::string theMessage) |
Check the validity of the produced shape. More... | |
GEOMALGOAPI_EXPORT bool | isNewShapesCollected (GeomShapePtr theWholeOld, const int theShapeType) |
Optimization of access the new shapes by old shapes for the limited set of needed new shapes. More... | |
GEOMALGOAPI_EXPORT void | collectNewShapes (GeomShapePtr theWholeOld, const int theShapeType) |
Optimization of access the new shapes by old shapes for the limited set of needed new shapes. More... | |
GEOMALGOAPI_EXPORT void | cleanNewShapes (GeomShapePtr theWholeOld, const int theShapeType) |
Clean cached data, created by collectNewShapes() method, called with the same arguments. More... | |
GEOMALGOAPI_EXPORT GeomShapePtr | oldShapesForNew (GeomShapePtr theWholeOld, GeomShapePtr theNewShape, const int theShapeType) |
Optimization of access the new shapes by old shapes for the limited set of needed new shapes. More... | |
GEOMALGOAPI_EXPORT void | fixOrientation (GeomShapePtr &theShape) |
Replaces theShape with shape from myMap. More... | |
template<class T > | |
T * | implPtr () |
Returns the pointer to the impl. More... | |
template<class T > | |
const T * | implPtr () const |
Returns the pointer to the impl. More... | |
template<class T > | |
const T & | impl () const |
Returns the reference object of the impl. More... | |
template<class T > | |
void | setImpl (T *theImpl) |
Updates the impl (deletes the old one) More... | |
GEOMAPI_EXPORT bool | empty () const |
Returns true if the impl is empty. More... | |
Protected Member Functions | |
GeomAlgoAPI_MakeSweep () | |
Empty constructor. More... | |
GEOMALGOAPI_EXPORT void | setBuilderType (const BuilderType theBuilderType) |
Sets builder type. More... | |
GEOMALGOAPI_EXPORT void | setDone (const bool theFlag) |
Sets status of builder. More... | |
GEOMALGOAPI_EXPORT void | setShape (const GeomShapePtr theShape) |
Sets result shape. More... | |
bool | isValidForHistory (const GeomShapePtr theShape) |
Protected Attributes | |
ListOfMakeShape | myListOfMakeShape |
List of make shape algos. More... | |
std::shared_ptr< GeomAPI_DataMapOfShapeShape > | myMap |
Data map to keep correct orientation of sub-shapes. More... | |
std::string | myError |
Error occurred during the execution of an algorithm. More... | |
std::map< std::string, GeomShapePtr > | myCreatedFaces |
Map of created faces with their name for naming. More... | |
The abstract class MakeSweep is the root class of swept primitives.
Sweeps are objects you obtain by sweeping a profile along a path. The profile can be any topology and the path is usually a curve or a wire. The profile generates objects according to the following rules:
|
inherited |
Builder type enum.
|
inlineprotected |
Empty constructor.
const ListOfShape & GeomAlgoAPI_MakeSweep::fromShapes | ( | ) | const |
const ListOfShape & GeomAlgoAPI_MakeSweep::toShapes | ( | ) | const |
void GeomAlgoAPI_MakeSweep::addFromShape | ( | const std::shared_ptr< GeomAPI_Shape > | theShape | ) |
Adds a shape to list of from shape.
[in] | theShape | a shape to add. |
void GeomAlgoAPI_MakeSweep::setFromShapes | ( | const ListOfShape & | theListOfShapes | ) |
Sets from shapes.
[in] | theListOfShapes | list of from shapes. |
void GeomAlgoAPI_MakeSweep::addToShape | ( | const std::shared_ptr< GeomAPI_Shape > | theShape | ) |
Adds a face to list of to shape.
[in] | theShape | a face to add. |
void GeomAlgoAPI_MakeSweep::setToShapes | ( | const ListOfShape & | theListOfShapes | ) |
Sets to shapes.
[in] | theListOfShapes | list of to shapes. |
|
inherited |
Initializes a class with new list of algorithms.
[in] | theMakeShapeList | list of algorithms. |
|
inherited |
|
inherited |
Adds algo to the end of list.
[in] | theMakeShape | algo to be added. |
|
virtualinherited |
Reimplemented from GeomAlgoAPI_MakeShape.
|
virtualinherited |
Reimplemented from GeomAlgoAPI_MakeShape.
Reimplemented in GeomAlgoAPI_Pipe, and GeomAlgoAPI_MakeShapeSet.
|
virtualinherited |
Reimplemented from GeomAlgoAPI_MakeShape.
Reimplemented in GeomAlgoAPI_MakeShapeSet.
|
virtualinherited |
Reimplemented from GeomAlgoAPI_MakeShape.
|
inlineinherited |
Initializes internals.
[in] | theBuilder | pointer to the builder. |
[in] | theBuilderType | builder type. |
|
inlinevirtualinherited |
Execute the algorithm.
Reimplemented in GeomAlgoAPI_Tube, GeomAlgoAPI_Torus, GeomAlgoAPI_Sphere, GeomAlgoAPI_Ellipsoid, GeomAlgoAPI_Cylinder, GeomAlgoAPI_ConeSegment, GeomAlgoAPI_Cone, and GeomAlgoAPI_Box.
|
inherited |
|
inherited |
|
inherited |
|
inherited |
Get a list of new shapes, modified from the given old shape.
Works correctly only in case if the modifications are cached. Check this with isNewShapesCollected().
[in] | theOldShape | base shape. |
[out] | theNewShapes | shapes modified from theOldShape. Does not cleared! |
|
inlinevirtualinherited |
Reimplemented in GeomAlgoAPI_Tube, GeomAlgoAPI_Torus, GeomAlgoAPI_Sphere, GeomAlgoAPI_Ellipsoid, GeomAlgoAPI_Cylinder, GeomAlgoAPI_ConeSegment, GeomAlgoAPI_Cone, and GeomAlgoAPI_Box.
|
virtualinherited |
Prepare the naming of faces.
Reimplemented in GeomAlgoAPI_Box.
|
inlineinherited |
|
inlineinherited |
|
inherited |
Check the validity of the produced shape.
|
inherited |
Optimization of access the new shapes by old shapes for the limited set of needed new shapes.
theWholeOld | the whole old shape |
theShapeType | type of the sub-shapes that is used for optimization |
|
inherited |
Optimization of access the new shapes by old shapes for the limited set of needed new shapes.
theWholeOld | the whole old shape |
theShapeType | type of the sub-shapes that is used for optimization |
|
inherited |
Clean cached data, created by collectNewShapes() method, called with the same arguments.
theWholeOld | the whole old shape |
theShapeType | type of the sub-shapes that is used for optimization |
|
inherited |
Optimization of access the new shapes by old shapes for the limited set of needed new shapes.
theWholeOld | the whole old shape |
theNewShape | the whole new shape |
theShapeType | type of the old sub-shapes |
|
inherited |
Replaces theShape with shape from myMap.
|
protectedinherited |
Sets builder type.
[in] | theBuilderType | new builder type. |
|
protectedinherited |
Sets status of builder.
[in] | theFlag | new status. |
|
protectedinherited |
Sets result shape.
[in] | theShape | new shape. |
|
protectedinherited |
|
inlineinherited |
Returns the pointer to the impl.
|
inlineinherited |
Returns the pointer to the impl.
|
inlineinherited |
Returns the reference object of the impl.
|
inlineinherited |
Updates the impl (deletes the old one)
|
inherited |
Returns true if the impl is empty.
|
protectedinherited |
List of make shape algos.
|
protectedinherited |
Data map to keep correct orientation of sub-shapes.
|
protectedinherited |
Error occurred during the execution of an algorithm.
|
protectedinherited |
Map of created faces with their name for naming.