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