// 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 _BOPTools_ShapeShapeInterference_HeaderFile #define _BOPTools_ShapeShapeInterference_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif //! Root class for storing an Interference
//! between a couple BRep shapes
class BOPTools_ShapeShapeInterference { 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 BOPTools_ShapeShapeInterference(); //! Constructor
Standard_EXPORT BOPTools_ShapeShapeInterference(const Standard_Integer anIndex1,const Standard_Integer anIndex2); //! Modifier
//! Sets DS-index for the first shape from the couple
Standard_EXPORT void SetIndex1(const Standard_Integer anIndex1) ; //! Modifier
//! Sets DS-index for the second shape from the couple
Standard_EXPORT void SetIndex2(const Standard_Integer anIndex2) ; //! Modifier
//! Sets DS-index for the new shape
Standard_EXPORT void SetNewShape(const Standard_Integer anIndex) ; //! Selector
Standard_EXPORT Standard_Integer Index1() const; //! Selector
Standard_EXPORT Standard_Integer Index2() const; //! Selector
Standard_EXPORT void Indices(Standard_Integer& anIndex1,Standard_Integer& anIndex2) const; //! Selector
//! Gets the value of index
//! if anIndex==myIndex1 it returns myIndex2;
//! if anIndex==myIndex2 it returns myIndex1;
//! otherwise it returns 0;
Standard_EXPORT Standard_Integer OppositeIndex(const Standard_Integer anIndex) const; //! Selector
Standard_EXPORT Standard_Integer NewShape() const; protected: private: Standard_Integer myIndex1; Standard_Integer myIndex2; Standard_Integer myNewShape; }; // other Inline functions and methods (like "C++: function call" methods) #endif