// 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 _Hatch_Line_HeaderFile #define _Hatch_Line_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _gp_Lin2d_HeaderFile #include #endif #ifndef _Hatch_LineForm_HeaderFile #include #endif #ifndef _Hatch_SequenceOfParameter_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif class Hatch_Hatcher; class gp_Lin2d; //! Stores a Line in the Hatcher. Represented by :
//!
//! * A Lin2d from gp, the geometry of the line.
//!
//! * Bounding parameters for the line.
//!
//! * A sorted List of Parameters, the intersections
//! on the line.
class Hatch_Line { 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 Hatch_Line(); Standard_EXPORT Hatch_Line(const gp_Lin2d& L,const Hatch_LineForm T); //! Insert a new intersection in the sorted list.
Standard_EXPORT void AddIntersection(const Standard_Real Par1,const Standard_Boolean Start,const Standard_Integer Index,const Standard_Real Par2,const Standard_Real theToler) ; friend class Hatch_Hatcher; protected: private: gp_Lin2d myLin; Hatch_LineForm myForm; Hatch_SequenceOfParameter myInters; }; // other Inline functions and methods (like "C++: function call" methods) #endif