Definition at line 2493 of file Drawable.h.
◆ PathArcRel() [1/3]
| Magick::PathArcRel::PathArcRel |
( |
const PathArcArgs & | coordinates_ | ) |
|
Definition at line 1860 of file Drawable.cpp.
1861 : _coordinates(1,coordinates_)
1862{
1863}
◆ PathArcRel() [2/3]
| Magick::PathArcRel::PathArcRel |
( |
const PathArcArgsList & | coordinates_ | ) |
|
Definition at line 1864 of file Drawable.cpp.
1865 : _coordinates(coordinates_)
1866{
1867}
◆ PathArcRel() [3/3]
| Magick::PathArcRel::PathArcRel |
( |
const PathArcRel & | original_ | ) |
|
Definition at line 1868 of file Drawable.cpp.
1869 : VPathBase (original_),
1870 _coordinates(original_._coordinates)
1871{
1872}
◆ ~PathArcRel()
| Magick::PathArcRel::~PathArcRel |
( |
void | | ) |
|
◆ copy()
◆ operator()()
| void Magick::PathArcRel::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 1876 of file Drawable.cpp.
1877{
1878 for( PathArcArgsList::const_iterator p = _coordinates.begin();
1879 p != _coordinates.end(); p++ )
1880 {
1881 DrawPathEllipticArcRelative( context_, p->radiusX(), p->radiusY(),
1882 p->xAxisRotation(), (MagickBooleanType) p->largeArcFlag(),
1883 (MagickBooleanType) p->sweepFlag(), p->x(), p->y() );
1884 }
1885}
◆ _coordinates
| PathArcArgsList Magick::PathArcRel::_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