Definition at line 2990 of file Drawable.h.
◆ PathMovetoAbs() [1/3]
Definition at line 2247 of file Drawable.cpp.
2248 : _coordinates(1,coordinate_)
2249{
2250}
◆ PathMovetoAbs() [2/3]
Magick::PathMovetoAbs::PathMovetoAbs |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2251 of file Drawable.cpp.
2252 : _coordinates(coordinates_)
2253{
2254}
◆ PathMovetoAbs() [3/3]
Magick::PathMovetoAbs::PathMovetoAbs |
( |
const PathMovetoAbs & | original_ | ) |
|
Definition at line 2255 of file Drawable.cpp.
2256 : VPathBase (original_),
2257 _coordinates(original_._coordinates)
2258{
2259}
◆ ~PathMovetoAbs()
Magick::PathMovetoAbs::~PathMovetoAbs |
( |
void | | ) |
|
◆ copy()
◆ operator()()
void Magick::PathMovetoAbs::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2263 of file Drawable.cpp.
2264{
2265 for( CoordinateList::const_iterator p = _coordinates.begin();
2266 p != _coordinates.end(); p++ )
2267 {
2268 DrawPathMoveToAbsolute( context_, p->x(), p->y() );
2269 }
2270}
◆ _coordinates
CoordinateList Magick::PathMovetoAbs::_coordinates |
|
private |
The documentation for this class was generated from the following files: