Definition at line 2493 of file Drawable.h.
◆ PathArcRel() [1/3]
Magick::PathArcRel::PathArcRel |
( |
const PathArcArgs & | coordinates_ | ) |
|
Definition at line 1863 of file Drawable.cpp.
1864 : _coordinates(1,coordinates_)
1865{
1866}
◆ PathArcRel() [2/3]
Magick::PathArcRel::PathArcRel |
( |
const PathArcArgsList & | coordinates_ | ) |
|
Definition at line 1867 of file Drawable.cpp.
1868 : _coordinates(coordinates_)
1869{
1870}
◆ PathArcRel() [3/3]
Magick::PathArcRel::PathArcRel |
( |
const PathArcRel & | original_ | ) |
|
Definition at line 1871 of file Drawable.cpp.
1872 : VPathBase (original_),
1873 _coordinates(original_._coordinates)
1874{
1875}
◆ ~PathArcRel()
Magick::PathArcRel::~PathArcRel |
( |
void | | ) |
|
◆ copy()
◆ operator()()
void Magick::PathArcRel::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 1879 of file Drawable.cpp.
1880{
1881 for( PathArcArgsList::const_iterator p = _coordinates.begin();
1882 p != _coordinates.end(); p++ )
1883 {
1884 DrawPathEllipticArcRelative( context_, p->radiusX(), p->radiusY(),
1885 p->xAxisRotation(), (MagickBooleanType) p->largeArcFlag(),
1886 (MagickBooleanType) p->sweepFlag(), p->x(), p->y() );
1887 }
1888}
◆ _coordinates
PathArcArgsList Magick::PathArcRel::_coordinates |
|
private |
The documentation for this class was generated from the following files: