// 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 _Graphic2d_SetOfPolylines_HeaderFile #define _Graphic2d_SetOfPolylines_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_DefineHandle_HeaderFile #include #endif #ifndef _Handle_Graphic2d_SetOfPolylines_HeaderFile #include #endif #ifndef _Graphic2d_SequenceOfPolyline_HeaderFile #include #endif #ifndef _Graphic2d_Line_HeaderFile #include #endif #ifndef _Handle_Graphic2d_GraphicObject_HeaderFile #include #endif #ifndef _Quantity_Length_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _Handle_Graphic2d_Drawer_HeaderFile #include #endif #ifndef _Standard_ShortReal_HeaderFile #include #endif #ifndef _Aspect_FStream_HeaderFile #include #endif class Standard_OutOfRange; class Graphic2d_GraphicObject; class Graphic2d_Drawer; //! The primitive SetOfPolylines
//! Warning: This primitive must be use as possible for to insure
//! that the sets is drawn correctly when the line type or
//! line width attrib is not SOLID and 1 pixel for the set.
//! NOTE: than the method PickedIndex() permits to known
//! the last picked polyline and segment in the set.
class Graphic2d_SetOfPolylines : public Graphic2d_Line { public: //! Creates an empty set of polylines in the graphic
//! object .
Standard_EXPORT Graphic2d_SetOfPolylines(const Handle(Graphic2d_GraphicObject)& aGraphicObject); //! Add a point in the current polyline of the set
//! or creates a new one when flag is TRUE.
Standard_EXPORT void Add(const Quantity_Length X,const Quantity_Length Y,const Standard_Boolean NewPolyline = Standard_False) ; //! Add a segment in the set to one of polyline
//! which has the last point identical to one of the segment
//! or creates a new polyline in the sets with the 2 segment points.
//! The first point is , .
//! The second point is , .
Standard_EXPORT void Add(const Quantity_Length X1,const Quantity_Length Y1,const Quantity_Length X2,const Quantity_Length Y2) ; //! Returns the number of polylines in the set.
Standard_EXPORT Standard_Integer Length() const; //! Returns the number of points of the polylines
//! of rank .
//! Trigger: Raises OutOfRange if is <1 or >Length()
Standard_EXPORT Standard_Integer Length(const Standard_Integer aPrank) const; //! Returns the point of rank
//! from the polyline of rank .
//! Trigger: Raises OutOfRange if is <1 or >Length()
//! or if is <1 or >Length()
Standard_EXPORT void Values(const Standard_Integer aPrank,const Standard_Integer aVrank,Quantity_Length& X,Quantity_Length& Y) const; Standard_EXPORT virtual void Save(Aspect_FStream& aFStream) const; DEFINE_STANDARD_RTTI(Graphic2d_SetOfPolylines) protected: //! Draws the set of polylines .
Standard_EXPORT void Draw(const Handle(Graphic2d_Drawer)& aDrawer) ; //! Returns Standard_True if one point of the set
//! is picked, Standard_False if not.
//! Warning: The PickIndex() method returns the rank of the picked
//! polyline point if any under the format :
//! ( << 16) | .
Standard_EXPORT Standard_Boolean Pick(const Standard_ShortReal X,const Standard_ShortReal Y,const Standard_ShortReal aPrecision,const Handle(Graphic2d_Drawer)& aDrawer) ; private: Graphic2d_SequenceOfPolyline myPolylines; }; // other Inline functions and methods (like "C++: function call" methods) #endif