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