// 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_PointBetween_HeaderFile #define _BOPTools_PointBetween_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif #ifndef _gp_Pnt_HeaderFile #include #endif class gp_Pnt; //! class for storing geometry information about
//! a point between neighbouring paves along
//! an edge
//!
class BOPTools_PointBetween { 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_PointBetween(); //! Modifier
//! sets value of the point's parameter on the edge
Standard_EXPORT void SetParameter(const Standard_Real T) ; //! Modifier
//! sets values of the point's parameter on the face
Standard_EXPORT void SetUV(const Standard_Real U,const Standard_Real V) ; //! Modifier
//! sets the 3D-point
Standard_EXPORT void SetPnt(const gp_Pnt& aP) ; //! Selector
Standard_EXPORT Standard_Real Parameter() const; //! Selector
Standard_EXPORT void UV(Standard_Real& U,Standard_Real& V) const; //! Selector
Standard_EXPORT const gp_Pnt& Pnt() const; protected: private: Standard_Real myT; Standard_Real myU; Standard_Real myV; gp_Pnt myPnt; }; // other Inline functions and methods (like "C++: function call" methods) #endif