// 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 _BRepMesh_Circ_HeaderFile #define _BRepMesh_Circ_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _gp_XY_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif class gp_XY; //! Describes a 2d circle with a size of only 3
//! Standard Real numbers instead of gp who needs 7
//! Standard Real numbers.
class BRepMesh_Circ { 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); } Standard_EXPORT BRepMesh_Circ(); Standard_EXPORT BRepMesh_Circ(const gp_XY& loc,const Standard_Real rad); Standard_EXPORT void SetLocation(const gp_XY& loc) ; Standard_EXPORT void SetRadius(const Standard_Real rad) ; const gp_XY& Location() const; const Standard_Real& Radius() const; protected: private: gp_XY location; Standard_Real radius; }; #include // other Inline functions and methods (like "C++: function call" methods) #endif