// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _BOP_ShellSplitter_HeaderFile #define _BOP_ShellSplitter_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _TopoDS_Shell_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _BOPTColStd_ListOfListOfShape_HeaderFile #include #endif #ifndef _BOP_IndexedDataMapOfEdgeListFaceInfo_HeaderFile #include #endif #ifndef _TopTools_ListOfShape_HeaderFile #include #endif class TopTools_ListOfShape; class TopoDS_Shell; class BOPTColStd_ListOfListOfShape; //! the algorithm to split (multiconnexed)
//! shells on a solid onto biconnexed shells
//! when each edge is shared by only two or one
//! faces
class BOP_ShellSplitter { public: void* operator new(size_t,void* anAddress) { return anAddress; } void* operator new(size_t size) { return Standard::Allocate(size); } void operator delete(void *anAddress) { if (anAddress) Standard::Free((Standard_Address&)anAddress); } //! Empty constructor;
Standard_EXPORT BOP_ShellSplitter(); //! Perform the algorithm using the list of shapes as data
Standard_EXPORT void DoWithListOfEdges(const TopTools_ListOfShape& aLE) ; //! Modifier
Standard_EXPORT void SetShell(const TopoDS_Shell& aShell) ; //! Selector
Standard_EXPORT const TopoDS_Shell& Shell() const; //! Perform the algorithm using the shell as data
Standard_EXPORT void DoWithShell() ; //! Returns TRUE if the source shell is valid and
//! there is nothing to correct
Standard_EXPORT Standard_Boolean IsNothingToDo() const; //! Returns TRUE if the algorithm was performed
//! successfuly
Standard_EXPORT Standard_Boolean IsDone() const; //! Selector
Standard_EXPORT const BOPTColStd_ListOfListOfShape& Shapes() const; protected: private: //! Perform the algorithm
Standard_EXPORT void Do() ; TopoDS_Shell myShell; Standard_Boolean myIsDone; Standard_Boolean myNothingToDo; BOPTColStd_ListOfListOfShape myShapes; BOP_IndexedDataMapOfEdgeListFaceInfo mySmartMap; TopTools_ListOfShape myFaces; }; // other Inline functions and methods (like "C++: function call" methods) #endif