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

O
+---------------> X
|\ |
| \ <-'
| \ angle (in radians, unless specified)
| \
|
V
Y
1 + + 3 1 + + 5
|\ /| |\ 6 /|
| \/ | must be represented as | \_/ |
| /\ | | / \ |
|/ \| |/ 3 \|
2 + + 4 2 + + 4
Definition at line 149 of file _QGAR_GenQgarPolygon.H.
Public Types | |
Types | |
| typedef T | value_type |
| Type of the vertices coordinates. | |
| typedef value_type & | reference |
| Reference to qgar::GenQgarPolygon::value_type. | |
| typedef const value_type & | const_reference |
| Constant reference to qgar::GenQgarPolygon::value_type. | |
| typedef value_type * | pointer |
| Pointer to qgar::GenQgarPolygon::value_type. | |
| typedef const value_type * | const_pointer |
| Constant pointer to qgar::GenQgarPolygon::value_type. | |
| typedef std::deque< GenPoint< value_type > > | vertices_type |
| Type of the vertices container. | |
| typedef vertices_type & | vertices_reference |
| Reference to qgar::GenQgarPolygon::vertices_type. | |
| typedef const vertices_type & | vertices_const_reference |
| Constant reference to qgar::GenQgarPolygon::vertices_type. | |
Public Member Functions | |
Constructors | |
| GenQgarPolygon (int aThickness=1, QGEcolor aColor=QGE_COLOR_DEFAULT, QGEoutline anOutline=QGE_OUTLINE_DEFAULT) | |
| Default constructor: The vertices deque is empty. | |
| GenQgarPolygon (const GenQgarPolygon< T > &aQPoly) | |
| Copy constructor. | |
| GenQgarPolygon (const GenPolygon< value_type > &aPoly, int aThickness=1, QGEcolor aColor=QGE_COLOR_DEFAULT, QGEoutline anOutline=QGE_OUTLINE_DEFAULT) | |
| Initialize from a geometrical polygon. | |
| GenQgarPolygon (const std::list< GenPoint< value_type > > &aPtList, int aThickness=1, QGEcolor aColor=QGE_COLOR_DEFAULT, QGEoutline anOutline=QGE_OUTLINE_DEFAULT) throw (QgarErrorUser) | |
| Initialize from a STL list of at least 3 points. | |
Destructor | |
| virtual | ~GenQgarPolygon () |
| Virtual destructor. | |
Copy | |
| virtual GenQgarPolygon< value_type > * | clone () const |
| Perform a deep copy. | |
Operators | |
| GenQgarPolygon< value_type > & | operator= (const GenQgarPolygon< value_type > &aQPoly) |
| Assignment. | |
Access to the geometrical structure | |
| const GenPolygon< value_type > & | accessGeomStructure () const |
| Get the structure implementing the geometrical aspect of a Qgar polygon. | |
Area | |
| double | signedArea () |
| Get signed area. | |
| double | area () |
| Get area. | |
Access to vertices | |
| int | size () const |
| Get number of vertices. | |
| vertices_const_reference | accessVertices () const |
| Get vertices. | |
| vertices_reference | getVertices () |
| Give non-protected access to the vertices. | |
| vertices_type | vertices () const |
| Get a copy of the vertices. | |
Insert vertices | |
| GenQgarPolygon< value_type > & | appendSource (const GenPoint< value_type > &aPt) |
| Insert a point as new source. | |
| GenQgarPolygon< value_type > & | appendTarget (const GenPoint< value_type > &aPt) |
| Insert a point as new target. | |
| GenQgarPolygon< value_type > & | append (const std::vector< GenPoint< value_type > > &aPtVect) |
| Appends a set of vertices to a Qgar polygon. | |
Remove vertices | |
| GenQgarPolygon< value_type > & | remove (const GenPoint< value_type > &aPt) throw (QgarErrorUser) |
| Remove a vertex from the polygon. | |
Conversion of the vertices | |
| std::vector< GenPoint< value_type > > | toPointVector () |
| Get a vector of points from the vertices. | |
| std::list< GenSegment< value_type > > | toSegList () |
| Get a STL list of (geometrical) segments from the vertices. | |
| std::list< GenQgarSegment< value_type > > | toQgarSegList () |
| Get a STL list of Qgar segments,. | |
Geometry: Translation | |
| virtual void | translate (value_type aX, value_type aY) |
| Translate current segment along X and Y axis. | |
Serialization/deserialization | |
| virtual std::istream & | read (std::istream &anInStream) |
| Deserializes the current polygon from an input stream. | |
| virtual std::ostream & | write (std::ostream &anOutStream) const |
| Serializes the current polygon 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, which may then be modified using appropriate function members. | |
Protected Attributes | |
Geometrical structure of a Qgar polygon | |
| GenPolygon< 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::GenQgarPolygon::value_type.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 188 of file _QGAR_GenQgarPolygon.H. |
|
|||||
|
Constant reference to qgar::GenQgarPolygon::value_type.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 178 of file _QGAR_GenQgarPolygon.H. |
|
|||||
|
Pointer to qgar::GenQgarPolygon::value_type.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 183 of file _QGAR_GenQgarPolygon.H. |
|
|||||
|
Reference to qgar::GenQgarPolygon::value_type.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 173 of file _QGAR_GenQgarPolygon.H. |
|
|||||
|
Type of the vertices coordinates.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 168 of file _QGAR_GenQgarPolygon.H. |
|
|||||
|
Constant reference to qgar::GenQgarPolygon::vertices_type.
Definition at line 203 of file _QGAR_GenQgarPolygon.H. |
|
|||||
|
Reference to qgar::GenQgarPolygon::vertices_type.
Definition at line 198 of file _QGAR_GenQgarPolygon.H. |
|
|||||
|
Type of the vertices container.
Definition at line 193 of file _QGAR_GenQgarPolygon.H. |
|
||||||||||||||||||||
|
Default constructor: The vertices deque is empty.
Definition at line 63 of file _QGAR_GenQgarPolygon.TCC. |
|
||||||||||
|
Copy constructor.
Definition at line 77 of file _QGAR_GenQgarPolygon.TCC. |
|
||||||||||||||||||||||||
|
Initialize from a geometrical polygon.
|
|
||||||||||||||||||||||||
|
Initialize from a STL list of at least 3 points.
Definition at line 108 of file _QGAR_GenQgarPolygon.TCC. |
|
|||||||||
|
Virtual destructor.
Definition at line 135 of file _QGAR_GenQgarPolygon.TCC. |
|
|||||||||
|
Get the structure implementing the geometrical aspect of a Qgar polygon.
Implements qgar::AbstractGenQgarPrimitive< T >. Definition at line 188 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure. |
|
|||||||||
|
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.
Definition at line 238 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< T >::accessVertices(). |
|
||||||||||
|
Appends a set of vertices to a Qgar polygon. The given vertices are inserted after the target vertex. The order of the given vertices is preserved in the resulting polygon. The last vertex of the vector becomes the new target.
Definition at line 295 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< T >::append(). |
|
||||||||||
|
Insert a point as new source.
|
|
||||||||||
|
Insert a point as new target.
|
|
|||||||||
|
Get area.
Definition at line 213 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< T >::area(). |
|
|||||||||
|
Perform a deep copy.
Implements qgar::AbstractGenQgarPrimitive< T >. Definition at line 150 of file _QGAR_GenQgarPolygon.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, which may then be modified using appropriate function members.
Implements qgar::AbstractGenQgarPrimitive< T >. Definition at line 424 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure. |
|
|||||||||
|
Give non-protected access to the vertices. Vertices may then be directly modified using appropriate transformation function members. Definition at line 248 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< T >::getVertices(). |
|
||||||||||
|
Assignment.
Definition at line 165 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< 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 polygon from an input stream. A serialized Qgar polygon is represented as: QgarPolygon(<GEOMETRICAL STRUCTURE>)(<THICKNESS>)(<COLOR>)(<OUTLINE>)
Implements qgar::ISerializable. Definition at line 374 of file _QGAR_GenQgarPolygon.TCC. References qgar::AbstractGenQgarPrimitive< T >::_color, qgar::GenQgarPolygon< T >::_geomStructure, qgar::AbstractGenQgarPrimitive< T >::_outline, qgar::AbstractGenQgarPrimitive< T >::color(), qgar::AbstractGenQgarPrimitive< T >::outline(), qgar::qgReadObjData(), and qgar::qgReadObjName(). |
|
||||||||||
|
Remove a vertex from the polygon.
|
|
||||||||||
|
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 signed area.
Definition at line 203 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< T >::signedArea(). |
|
|||||||||
|
Get number of vertices.
Definition at line 228 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< 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 vertices.
Definition at line 338 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< T >::toPointVector(). |
|
|||||||||
|
Get a STL list of Qgar segments,. The resulting segments are provided with the same thickness, color and outline as the current polygon. Definition at line 359 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< T >::toQgarSegList(). |
|
|||||||||
|
Get a STL list of (geometrical) segments from the vertices.
Definition at line 348 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< T >::toSegList(). |
|
||||||||||||||||
|
Translate current segment along X and Y axis.
Reimplemented from qgar::AbstractGenQgarPrimitive< T >. Definition at line 445 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< T >::translate(). |
|
|||||||||
|
Get a copy of the vertices.
Definition at line 258 of file _QGAR_GenQgarPolygon.TCC. References qgar::GenQgarPolygon< T >::_geomStructure, and qgar::GenPolygon< T >::vertices(). |
|
||||||||||
|
Serializes the current polygon to an input stream. A serialized Qgar polygon is represented as: QgarPolygon(<GEOMETRICAL STRUCTURE>)(<THICKNESS>)(<COLOR>)(<OUTLINE>)
Implements qgar::ISerializable. Definition at line 400 of file _QGAR_GenQgarPolygon.TCC. References qgar::AbstractGenQgarPrimitive< T >::_color, qgar::GenQgarPolygon< 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(). |
|
|||||
|
|||||
|
|||||
|
|||||