Definition at line 2469 of file Drawable.h.
◆ PathArcAbs() [1/3]
Magick::PathArcAbs::PathArcAbs |
( |
const PathArcArgs & | coordinates_ | ) |
|
Definition at line 1832 of file Drawable.cpp.
1833 : _coordinates(1,coordinates_)
1834{
1835}
◆ PathArcAbs() [2/3]
Magick::PathArcAbs::PathArcAbs |
( |
const PathArcArgsList & | coordinates_ | ) |
|
Definition at line 1836 of file Drawable.cpp.
1837 : _coordinates(coordinates_)
1838{
1839}
◆ PathArcAbs() [3/3]
Magick::PathArcAbs::PathArcAbs |
( |
const PathArcAbs & | original_ | ) |
|
Definition at line 1840 of file Drawable.cpp.
1841 : VPathBase (original_),
1842 _coordinates(original_._coordinates)
1843{
1844}
◆ ~PathArcAbs()
Magick::PathArcAbs::~PathArcAbs |
( |
void | | ) |
|
◆ copy()
◆ operator()()
void Magick::PathArcAbs::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 1848 of file Drawable.cpp.
1849{
1850 for( PathArcArgsList::const_iterator p = _coordinates.begin();
1851 p != _coordinates.end(); p++ )
1852 {
1853 DrawPathEllipticArcAbsolute( context_, p->radiusX(), p->radiusY(),
1854 p->xAxisRotation(), (MagickBooleanType) p->largeArcFlag(),
1855 (MagickBooleanType) p->sweepFlag(), p->x(), p->y() );
1856 }
1857}
◆ _coordinates
PathArcArgsList Magick::PathArcAbs::_coordinates |
|
private |
The documentation for this class was generated from the following files: