// 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_SetOfSegments_HeaderFile #define _Graphic2d_SetOfSegments_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_DefineHandle_HeaderFile #include #endif #ifndef _Handle_Graphic2d_SetOfSegments_HeaderFile #include #endif #ifndef _TShort_SequenceOfShortReal_HeaderFile #include #endif #ifndef _Graphic2d_Line_HeaderFile #include #endif #ifndef _Handle_Graphic2d_GraphicObject_HeaderFile #include #endif #ifndef _Quantity_Length_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _Handle_Graphic2d_Drawer_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _Standard_ShortReal_HeaderFile #include #endif #ifndef _Aspect_FStream_HeaderFile #include #endif class Graphic2d_SegmentDefinitionError; class Standard_OutOfRange; class Graphic2d_GraphicObject; class Graphic2d_Drawer; //! The primitive SetOfSegments
//! Warning: This primitive must be use as possible for performance
//! improvment but is drawn with a global line attributes
//! for all the set.
//! But when the set contains a lot of contigous segments
//! with a line attrib different to the default,it's
//! more preferable to use a SetOfPolylines for to insure
//! a better quality.
//! NOTE: than the method PickedIndex() permits to known
//! the last picked segment in the set.
class Graphic2d_SetOfSegments : public Graphic2d_Line { public: //! Creates an empty set of segments in the graphic
//! object .
Standard_EXPORT Graphic2d_SetOfSegments(const Handle(Graphic2d_GraphicObject)& aGraphicObject); //! Add a segment in the set
//! The first point is , .
//! The second point is , .
//! Trigger: Raises SegmentDefinitionError if the
//! first point and the second point are identical.
Standard_EXPORT void Add(const Quantity_Length X1,const Quantity_Length Y1,const Quantity_Length X2,const Quantity_Length Y2) ; //! Returns the number of segments in the set.
Standard_EXPORT Standard_Integer Length() const; //! Returns the segment of rank from the set.
//! Trigger: Raises OutOfRange if is <1 or >Length()
Standard_EXPORT void Values(const Standard_Integer aRank,Quantity_Length& X1,Quantity_Length& Y1,Quantity_Length& X2,Quantity_Length& Y2) const; Standard_EXPORT virtual void Save(Aspect_FStream& aFStream) const; DEFINE_STANDARD_RTTI(Graphic2d_SetOfSegments) protected: //! Draws the set of segments .
Standard_EXPORT void Draw(const Handle(Graphic2d_Drawer)& aDrawer) ; //! Draws element of the set .
Standard_EXPORT virtual void DrawElement(const Handle(Graphic2d_Drawer)& aDrawer,const Standard_Integer anIndex) ; //! Draws vertex of the set .
Standard_EXPORT virtual void DrawVertex(const Handle(Graphic2d_Drawer)& aDrawer,const Standard_Integer anIndex) ; //! Returns Standard_True if one segment of the set
//! is picked, Standard_False if not.
//! Warning: The PickIndex() method returns the rank of the picked
//! segment if any.
Standard_EXPORT Standard_Boolean Pick(const Standard_ShortReal X,const Standard_ShortReal Y,const Standard_ShortReal aPrecision,const Handle(Graphic2d_Drawer)& aDrawer) ; private: TShort_SequenceOfShortReal myX1; TShort_SequenceOfShortReal myY1; TShort_SequenceOfShortReal myX2; TShort_SequenceOfShortReal myY2; }; // other Inline functions and methods (like "C++: function call" methods) #endif