// 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_FaceInfo_HeaderFile #define _BOP_FaceInfo_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _TopoDS_Face_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _gp_Pnt_HeaderFile #include #endif #ifndef _gp_Pnt2d_HeaderFile #include #endif #ifndef _gp_Dir_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif class TopoDS_Face; class gp_Pnt; class gp_Pnt2d; class gp_Dir; //! The auxiliary class to store data about faces on a shell
//! that have common edge
//!
class BOP_FaceInfo { 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_FaceInfo(); //! Modifier
Standard_EXPORT void SetFace(const TopoDS_Face& aF) ; //! Modifier
Standard_EXPORT void SetPassed(const Standard_Boolean aFlag) ; //! Modifier
Standard_EXPORT void SetPOnEdge(const gp_Pnt& aP) ; //! Modifier
Standard_EXPORT void SetPInFace(const gp_Pnt& aP) ; //! Modifier
Standard_EXPORT void SetPInFace2D(const gp_Pnt2d& aP) ; //! Modifier
Standard_EXPORT void SetNormal(const gp_Dir& aD) ; //! Modifier
Standard_EXPORT void SetAngle(const Standard_Real A) ; //! Selector
Standard_EXPORT const TopoDS_Face& Face() const; //! Selector
Standard_EXPORT const gp_Pnt& POnEdge() const; //! Selector
Standard_EXPORT const gp_Pnt& PInFace() const; //! Selector
Standard_EXPORT const gp_Pnt2d& PInFace2D() const; //! Selector
Standard_EXPORT const gp_Dir& Normal() const; //! Selector
Standard_EXPORT Standard_Boolean IsPassed() const; //! Selector
Standard_EXPORT Standard_Real Angle() const; protected: private: TopoDS_Face myFace; Standard_Boolean myPassed; gp_Pnt myPOnEdge; gp_Pnt myPInFace; gp_Pnt2d myPInFace2D; gp_Dir myNormal; Standard_Real myAngle; }; // other Inline functions and methods (like "C++: function call" methods) #endif