Definition at line 2370 of file Drawable.h.
◆ PathArcAbs() [1/3]
| Magick::PathArcAbs::PathArcAbs |
( |
const PathArcArgs & | coordinates_ | ) |
|
Definition at line 1640 of file Drawable.cpp.
1641 : _coordinates(1,coordinates_)
1642{
1643}
◆ PathArcAbs() [2/3]
| Magick::PathArcAbs::PathArcAbs |
( |
const PathArcArgsList & | coordinates_ | ) |
|
Definition at line 1644 of file Drawable.cpp.
1645 : _coordinates(coordinates_)
1646{
1647}
◆ PathArcAbs() [3/3]
| Magick::PathArcAbs::PathArcAbs |
( |
const PathArcAbs & | original_ | ) |
|
Definition at line 1648 of file Drawable.cpp.
1649 : VPathBase (original_),
1650 _coordinates(original_._coordinates)
1651{
1652}
◆ ~PathArcAbs()
| Magick::PathArcAbs::~PathArcAbs |
( |
void | | ) |
|
◆ copy()
◆ operator()()
| void Magick::PathArcAbs::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 1656 of file Drawable.cpp.
1657{
1658 for( PathArcArgsList::const_iterator p = _coordinates.begin();
1659 p != _coordinates.end(); p++ )
1660 {
1661 DrawPathEllipticArcAbsolute( context_, p->radiusX(), p->radiusY(),
1662 p->xAxisRotation(), (MagickBooleanType) p->largeArcFlag(),
1663 (MagickBooleanType) p->sweepFlag(), p->x(), p->y() );
1664 }
1665}
◆ _coordinates
| PathArcArgsList Magick::PathArcAbs::_coordinates |
|
private |
The documentation for this class was generated from the following files: