Description Usage Arguments Details Author(s)
Gets the current point of the current path, which is conceptually the final point reached by the path so far.
1 | cairoGetCurrentPoint(cr, x, y)
|
|
[ |
|
[numeric] return value for X coordinate of the current point |
|
[numeric] return value for Y coordinate of the current point |
The current point is returned in the user-space coordinate
system. If there is no defined current point or if cr
is in an
error status, x
and y
will both be set to 0.0. It is possible to
check this in advance with cairoHasCurrentPoint
.
Most path construction functions alter the current point. See the
following for details on how they affect the current point:
cairoNewPath
, cairoNewSubPath
,
cairoAppendPath
, cairoClosePath
,
cairoMoveTo
, cairoLineTo
, cairoCurveTo
,
cairoRelMoveTo
, cairoRelLineTo
, cairoRelCurveTo
,
cairoArc
, cairoArcNegative
, cairoRectangle
,
cairoTextPath
, cairoGlyphPath
, cairoStrokeToPath()
.
Some functions use and alter the current point but do not
otherwise change current path:
cairoShowText
.
Some functions unset the current path and as a result, current point:
cairoFill
, cairoStroke
.
Derived by RGtkGen from GTK+ documentation
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.