#include <qgarlib/primitives.H>
Inheritance diagram for qgar::GenQgarPolyline< T >:

O
+---------------> X
|\ |
| \ <-'
| \ angle (in radians, unless specified)
| \
|
V
Y
Definition at line 139 of file _QGAR_GenQgarPolyline.H.
Public Types | |
Types | |
| typedef T | value_type |
| Type of the vertices coordinates. | |
| typedef value_type & | reference |
| Reference to qgar::GenQgarPolyline::value_type. | |
| typedef const value_type & | const_reference |
| Constant reference to qgar::GenQgarPolyline::value_type. | |
| typedef value_type * | pointer |
| Pointer to qgar::GenQgarPolyline::value_type. | |
| typedef const value_type * | const_pointer |
| Constant pointer to qgar::GenQgarPolyline::value_type. | |
| typedef std::deque< GenPoint< value_type > > | vertices_type |
| Type of the vertices container. | |
| typedef vertices_type & | vertices_reference |
| Reference to qgar::GenQgarPolyline::vertices_type. | |
| typedef const vertices_type & | vertices_const_reference |
| Constant reference to qgar::GenQgarPolyline::vertices_type. | |
Public Member Functions | |
Constructors | |
| GenQgarPolyline (int aThickness=1, QGEcolor aColor=QGE_COLOR_DEFAULT, QGEoutline anOutline=QGE_OUTLINE_DEFAULT) | |
| Default constructor: The series of vertices is empty. | |
| GenQgarPolyline (const GenQgarPolyline< value_type > &aQPoly) | |
| Copy constructor. | |
| GenQgarPolyline (const GenPolyline< value_type > &aPoly, int aThickness=1, QGEcolor aColor=QGE_COLOR_DEFAULT, QGEoutline anOutline=QGE_OUTLINE_DEFAULT) | |
| Initialize from a geometrical polyline. | |
| GenQgarPolyline (const GenQgarSegment< value_type > &aQSeg) | |
| Initialize from a Qgar segment. | |
| GenQgarPolyline (const GenSegment< value_type > &aSeg, int aThickness=1, QGEcolor aColor=QGE_COLOR_DEFAULT, QGEoutline anOutline=QGE_OUTLINE_DEFAULT) | |
| Initialize from a (geometrical) segment. | |
| GenQgarPolyline (const GenPoint< value_type > &aSource, const GenPoint< value_type > &aTarget, int aThickness=1, QGEcolor aColor=QGE_COLOR_DEFAULT, QGEoutline anOutline=QGE_OUTLINE_DEFAULT) | |
| Initialize from 2 vertices: source and target. | |
| GenQgarPolyline (const std::list< GenPoint< value_type > > &aPtList, int aThickness=1, QGEcolor aColor=QGE_COLOR_DEFAULT, QGEoutline anOutline=QGE_OUTLINE_DEFAULT) | |
| Initialize from a list of at least two points. | |
Destructor | |
| virtual | ~GenQgarPolyline () |
| Virtual destructor. | |
Copy | |
| virtual GenQgarPolyline< value_type > * | clone () const |
| Create a dynamically allocated deep copy of the primitive. | |
Operators | |
| GenQgarPolyline< value_type > & | operator= (const GenQgarPolyline< value_type > &aQPoly) |
| Assignment. | |
Access to the geometrical structure | |
| const GenPolyline< value_type > & | accessGeomStructure () const |
| Get the structure implementing the geometrical aspect of a Qgar polyline. | |
Access to vertices | |
| int | size () const |
| Get number of vertices. | |
| vertices_const_reference | accessVertices () const |
| Get vertices in a deque. | |
| vertices_reference | getVertices () |
| Give non-protected access to the vertices. | |
| vertices_type | vertices () const |
| Get a copy of the vertices in a deque. | |
Insert vertices | |
| GenQgarPolyline< value_type > & | appendSource (const GenPoint< value_type > &aPt) |
| Add a point as new source. | |
| GenQgarPolyline< value_type > & | appendTarget (const GenPoint< value_type > &aPt) |
| Append a point as new target. | |
| GenQgarPolyline< value_type > & | append (const GenQgarPolyline< value_type > &aQPoly) |
| Appends a Qgar polyline. | |
| GenQgarPolyline< value_type > & | append (const GenPolyline< value_type > &aPoly) |
| Appends a polyline. | |
| GenQgarPolyline< value_type > & | append (const std::vector< GenPoint< value_type > > &aPtVect) |
| Appends a set of point to a Qgar polyline. | |
Remove vertices | |
| GenQgarPolyline< value_type > & | remove (const GenPoint< value_type > &aPt) |
| Remove a vertex from the polyline. | |
Conversion of the vertices | |
| std::vector< GenPoint< value_type > > | toPointVector () |
| Get a vector of points from the series of vertices. | |
| std::list< GenSegment< value_type > > | toSegList () |
| Get a list of (geometrical) segments from the vertices. | |
| std::list< GenQgarSegment< value_type > > | toQgarSegList () |
| Get a list of Qgar segments from the vertices. | |
Geometry: Translation | |
| virtual void | translate (value_type aX, value_type aY) |
| Translate current polyline along X and Y axis. | |
Serialization/Deserialization | |
| virtual std::istream & | read (std::istream &anInStream) |
| Deserializes the current polyline from an input stream. | |
| virtual std::ostream & | write (std::ostream &anOutStream) const |
| Serializes the current polyline to an input stream. | |
Access to attributes | |
| int | thickness () const |
| Get thickness. | |
| QGEcolor | color () const |
| Get color. | |
| QGEoutline | outline () const |
| Get outline. | |
Access to source and target | |
| const GenPoint< value_type > & | accessSource () const |
| Get source point. | |
| GenPoint< value_type > | source () const |
| Get a copy of the source point. | |
| const GenPoint< value_type > & | accessTarget () const |
| Get target point. | |
| GenPoint< value_type > | target () const |
| Get a copy of the target point. | |
Access to separate coordinates | |
| value_type | xSource () const |
| Get X coordinate of the source point. | |
| value_type | xTarget () const |
| Get X coordinate of the target point. | |
| value_type | ySource () const |
| Get Y coordinate of the source point. | |
| value_type | yTarget () const |
| Get Y coordinate of the target point. | |
Access to geometrical characteristics | |
| value_type | dx () const |
| Difference between target and source X coordinates. | |
| value_type | dy () const |
| Difference between target and source Y coordinates. | |
Set attributes | |
| void | setThickness (int aThickness) |
| Set thickness. | |
| void | setColor (QGEcolor aColor) |
| Set color. | |
| void | setOutline (QGEoutline anOutline) |
| Set outline. | |
Set source and/or target without update | |
| void | setSource (value_type aX, value_type aY) |
| Set source point. | |
| void | setSource (const GenPoint< value_type > &aPt) |
| Set source point. | |
| void | setTarget (value_type aX, value_type aY) |
| Set target point. | |
| void | setTarget (const GenPoint< value_type > &aPt) |
| Set target point. | |
| void | setSourceTarget (value_type aXSource, value_type aYSource, value_type aXTarget, value_type aYTarget) |
| Set both source and target points. | |
| void | setSourceTarget (const GenPoint< value_type > &aSource, const GenPoint< value_type > &aTarget) |
| Set both source and target points. | |
Set source and/or target with update | |
| void | fixSource (value_type aX, value_type aY) |
| Set source point. | |
| void | fixSource (const GenPoint< value_type > &aPt) |
| Set source point. | |
| void | fixTarget (value_type aX, value_type aY) |
| Set target point. | |
| void | fixTarget (const GenPoint< value_type > &aPt) |
| Set target point. | |
| void | fixSourceTarget (value_type aXSource, value_type aYSource, value_type aXTarget, value_type aYTarget) |
| Set both source and target points. | |
| void | fixSourceTarget (const GenPoint< value_type > &aSource, const GenPoint< value_type > &aTarget) |
| Set both source and target points. | |
Set separate (source and target) coordinates without update | |
| void | setXSource (value_type aX) |
| Set X coordinate of the source point. | |
| void | setXTarget (value_type aX) |
| Set X coordinate of the target point. | |
| void | setYSource (value_type aY) |
| Set Y coordinate of the source point. | |
| void | setYTarget (value_type aY) |
| Set Y coordinate of the target point. | |
Set separate (source and target) coordinates with update | |
| void | fixXSource (value_type aX) |
| Set X coordinate of the source point. | |
| void | fixXTarget (value_type aX) |
| Set X coordinate of the target point. | |
| void | fixYSource (value_type aY) |
| Set Y coordinate of the source point. | |
| void | fixYTarget (value_type aY) |
| Set Y coordinate of the target point. | |
Protected Member Functions | |
Non-protected access to the geometrical aspect | |
| AbstractGenPrimitive< value_type > & | getGeomStructure () |
| Return the geometrical aspect. | |
Protected Attributes | |
Geometrical structure of a Qgar polyline | |
| GenPolyline< value_type > | _geomStructure |
| Geometrical structure. | |
Attributes | |
Apply a central symmetry to the current primitive, using the point of given coordinates as the symmetry center. Apply a central symmetry to the current primitive, using the given point as the symmetry center. Apply a mirror symmetry to the current primitive, using the line passing through the two given points for the symmetry. Apply a mirror symmetry to the current primitive, using the line supporting the given segment for the symmetry. | |
| int | _thickness |
| Thickness of the outline. | |
| QGEcolor | _color |
| Color of the outline. | |
| QGEoutline | _outline |
| Type of outline. | |
|
|||||
|
Constant pointer to qgar::GenQgarPolyline::value_type.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 177 of file _QGAR_GenQgarPolyline.H. |
|
|||||
|
Constant reference to qgar::GenQgarPolyline::value_type.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 167 of file _QGAR_GenQgarPolyline.H. |
|
|||||
|
Pointer to qgar::GenQgarPolyline::value_type.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 172 of file _QGAR_GenQgarPolyline.H. |
|
|||||
|
Reference to qgar::GenQgarPolyline::value_type.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 162 of file _QGAR_GenQgarPolyline.H. |
|
|||||
|
Type of the vertices coordinates.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 157 of file _QGAR_GenQgarPolyline.H. |
|
|||||
|
Constant reference to qgar::GenQgarPolyline::vertices_type.
Definition at line 192 of file _QGAR_GenQgarPolyline.H. |
|
|||||
|
Reference to qgar::GenQgarPolyline::vertices_type.
Definition at line 187 of file _QGAR_GenQgarPolyline.H. |
|
|||||
|
Type of the vertices container.
Definition at line 182 of file _QGAR_GenQgarPolyline.H. |
|
||||||||||||||||||||
|
Default constructor: The series of vertices is empty.
Definition at line 62 of file _QGAR_GenQgarPolyline.TCC. |
|
||||||||||
|
Copy constructor.
Definition at line 78 of file _QGAR_GenQgarPolyline.TCC. |
|
||||||||||||||||||||||||
|
Initialize from a geometrical polyline.
|
|
||||||||||
|
Initialize from a Qgar segment. The created polyline has the same thickness, color and outline as the given Qgar segment.
Definition at line 111 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure, and qgar::GenQgarSegment< T >::accessGeomStructure(). |
|
||||||||||||||||||||||||
|
Initialize from a (geometrical) segment.
|
|
||||||||||||||||||||||||||||
|
Initialize from 2 vertices: source and target.
|
|
||||||||||||||||||||||||
|
Initialize from a list of at least two points.
Definition at line 160 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure. |
|
|||||||||
|
Virtual destructor.
Definition at line 182 of file _QGAR_GenQgarPolyline.TCC. |
|
|||||||||
|
Get the structure implementing the geometrical aspect of a Qgar polyline.
Implements qgar::AbstractGenQgarPrimitive< T >. Definition at line 234 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure. Referenced by qgar::AbstractGraphicsFile::write(). |
|
|||||||||
|
Get source point.
Definition at line 147 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::accessGeomStructure(), and qgar::AbstractGenPrimitive< T >::accessSource(). |
|
|||||||||
|
Get target point.
Definition at line 167 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::accessGeomStructure(), and qgar::AbstractGenPrimitive< T >::accessTarget(). |
|
|||||||||
|
Get vertices in a deque.
Definition at line 259 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure, and qgar::GenPolyline< T >::accessVertices(). Referenced by qgar::GenPolyline< T >::append(). |
|
||||||||||
|
Appends a set of point to a Qgar polyline. The last point of the vector becomes the new polyline target.
Definition at line 338 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure, and qgar::GenPolyline< T >::append(). |
|
||||||||||
|
Appends a polyline.
|
|
||||||||||
|
Appends a Qgar polyline.
Definition at line 316 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure, and qgar::GenPolyline< T >::append(). |
|
||||||||||
|
Add a point as new source.
|
|
||||||||||
|
Append a point as new target.
Referenced by qgar::DxfFile::retrievePQgarPolyline(). |
|
|||||||||
|
Create a dynamically allocated deep copy of the primitive.
Implements qgar::AbstractGenQgarPrimitive< T >. Definition at line 197 of file _QGAR_GenQgarPolyline.TCC. |
|
|||||||||
|
Get color.
Definition at line 122 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::_color. Referenced by qgar::GenQgarSegment< T >::read(), qgar::GenQgarPolyline< T >::read(), qgar::GenQgarPolygon< T >::read(), qgar::GenQgarArc< T >::read(), and qgar::AbstractGraphicsFile::write(). |
|
|||||||||
|
Difference between target and source X coordinates.
Definition at line 237 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::accessGeomStructure(), and qgar::AbstractGenPrimitive< T >::dx(). |
|
|||||||||
|
Difference between target and source Y coordinates.
Definition at line 247 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::accessGeomStructure(), and qgar::AbstractGenPrimitive< T >::dy(). |
|
||||||||||
|
Set source point.
|
|
||||||||||||||||
|
Set source point.
Definition at line 364 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenPrimitive< T >::fixSource(), and qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(). |
|
||||||||||||||||
|
Set both source and target points.
|
|
||||||||||||||||||||||||
|
Set both source and target points.
Definition at line 402 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenPrimitive< T >::fixSourceTarget(), and qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(). |
|
||||||||||
|
Set target point.
|
|
||||||||||||||||
|
Set target point.
Definition at line 383 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenPrimitive< T >::fixTarget(), and qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(). |
|
||||||||||
|
Set X coordinate of the source point.
Definition at line 474 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenPrimitive< T >::fixXSource(), and qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(). |
|
||||||||||
|
Set X coordinate of the target point.
Definition at line 484 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenPrimitive< T >::fixXTarget(), and qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(). |
|
||||||||||
|
Set Y coordinate of the source point.
Definition at line 494 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenPrimitive< T >::fixYSource(), and qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(). |
|
||||||||||
|
Set Y coordinate of the target point.
Definition at line 504 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenPrimitive< T >::fixYTarget(), and qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(). |
|
|||||||||
|
Return the geometrical aspect. It may then be modified using appropriate transformation function members. Implements qgar::AbstractGenQgarPrimitive< T >. Definition at line 407 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure. |
|
|||||||||
|
Give non-protected access to the vertices. Vertices may then be directly modified using appropriate transformation function members. Definition at line 269 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure, and qgar::GenPolyline< T >::getVertices(). |
|
||||||||||
|
Assignment.
Definition at line 211 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure. |
|
|||||||||
|
Get outline.
Definition at line 132 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::_outline. Referenced by qgar::GenQgarSegment< T >::read(), qgar::GenQgarPolyline< T >::read(), qgar::GenQgarPolygon< T >::read(), qgar::GenQgarArc< T >::read(), and qgar::AbstractGraphicsFile::write(). |
|
||||||||||
|
Deserializes the current polyline from an input stream. A serialized Qgar polyline is represented as: QgarPolyline(<GEOMETRICAL STRUCTURE>)(<THICKNESS>)(<COLOR>)(<OUTLINE>)
Implements qgar::ISerializable. Definition at line 420 of file _QGAR_GenQgarPolyline.TCC. References qgar::AbstractGenQgarPrimitive< T >::_color, qgar::GenQgarPolyline< T >::_geomStructure, qgar::AbstractGenQgarPrimitive< T >::_outline, qgar::AbstractGenQgarPrimitive< T >::color(), qgar::AbstractGenQgarPrimitive< T >::outline(), qgar::qgReadObjData(), and qgar::qgReadObjName(). |
|
||||||||||
|
Remove a vertex from the polyline.
|
|
||||||||||
|
Set color.
Definition at line 272 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::_color. |
|
||||||||||
|
Set outline.
Definition at line 282 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::_outline. |
|
||||||||||
|
Set source point.
|
|
||||||||||||||||
|
Set source point.
Definition at line 298 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(), and qgar::AbstractGenPrimitive< T >::setSource(). |
|
||||||||||||||||
|
Set both source and target points.
|
|
||||||||||||||||||||||||
|
Set both source and target points.
Definition at line 336 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(), and qgar::AbstractGenPrimitive< T >::setSourceTarget(). |
|
||||||||||
|
Set target point.
|
|
||||||||||||||||
|
Set target point.
Definition at line 317 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(), and qgar::AbstractGenPrimitive< T >::setTarget(). |
|
||||||||||
|
Set thickness.
Definition at line 262 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::_thickness. |
|
||||||||||
|
Set X coordinate of the source point.
Definition at line 429 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(), and qgar::AbstractGenPrimitive< T >::setXSource(). |
|
||||||||||
|
Set X coordinate of the target point.
Definition at line 439 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(), and qgar::AbstractGenPrimitive< T >::setXTarget(). |
|
||||||||||
|
Set Y coordinate of the source point.
Definition at line 449 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(), and qgar::AbstractGenPrimitive< T >::setYSource(). |
|
||||||||||
|
Set Y coordinate of the target point.
Definition at line 459 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::getGeomStructure(), and qgar::AbstractGenPrimitive< T >::setYTarget(). |
|
|||||||||
|
Get number of vertices.
Definition at line 249 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure, and qgar::GenPolyline< T >::size(). |
|
|||||||||
|
Get a copy of the source point.
Definition at line 157 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::accessGeomStructure(), and qgar::AbstractGenPrimitive< T >::source(). Referenced by RWARCVECTOR_arcsInLoop(). |
|
|||||||||
|
Get a copy of the target point.
Definition at line 177 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::accessGeomStructure(), and qgar::AbstractGenPrimitive< T >::target(). Referenced by qgar::GenPolyline< T >::append(), and RWARCVECTOR_arcsInLoop(). |
|
|||||||||
|
Get thickness.
Definition at line 112 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::_thickness. Referenced by qgar::AbstractGraphicsFile::write(). |
|
|||||||||
|
Get a vector of points from the series of vertices.
Definition at line 370 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure, and qgar::GenPolyline< T >::toPointVector(). |
|
|||||||||
|
Get a list of Qgar segments from the vertices. The resulting segments are provided with the same thickness, color and outline as the current polyline. Definition at line 390 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure, and qgar::GenPolyline< T >::toQgarSegList(). |
|
|||||||||
|
Get a list of (geometrical) segments from the vertices.
Definition at line 380 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure, and qgar::GenPolyline< T >::toSegList(). |
|
||||||||||||||||
|
Translate current polyline along X and Y axis.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 476 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure. |
|
|||||||||
|
Get a copy of the vertices in a deque.
Definition at line 279 of file _QGAR_GenQgarPolyline.TCC. References qgar::GenQgarPolyline< T >::_geomStructure, and qgar::GenPolyline< T >::vertices(). |
|
||||||||||
|
Serializes the current polyline to an input stream. A serialized Qgar polyline is represented as: QgarPolyline(<GEOMETRICAL STRUCTURE>)(<THICKNESS>)(<COLOR>)(<OUTLINE>)
Implements qgar::ISerializable. Definition at line 446 of file _QGAR_GenQgarPolyline.TCC. References qgar::AbstractGenQgarPrimitive< T >::_color, qgar::GenQgarPolyline< T >::_geomStructure, qgar::AbstractGenQgarPrimitive< T >::_outline, and qgar::AbstractGenQgarPrimitive< T >::_thickness. |
|
|||||||||
|
Get X coordinate of the source point.
Definition at line 192 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::accessGeomStructure(), and qgar::AbstractGenPrimitive< T >::xSource(). |
|
|||||||||
|
Get X coordinate of the target point.
Definition at line 202 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::accessGeomStructure(), and qgar::AbstractGenPrimitive< T >::xTarget(). |
|
|||||||||
|
Get Y coordinate of the source point.
Definition at line 212 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::accessGeomStructure(), and qgar::AbstractGenPrimitive< T >::ySource(). |
|
|||||||||
|
Get Y coordinate of the target point.
Definition at line 222 of file _QGAR_AbstractGenQgarPrimitive.TCC. References qgar::AbstractGenQgarPrimitive< T >::accessGeomStructure(), and qgar::AbstractGenPrimitive< T >::yTarget(). |
|
|||||
|
|||||
|
|||||
|
|||||