Definition at line 3089 of file Drawable.h.
◆ PathMovetoAbs() [1/3]
Definition at line 2436 of file Drawable.cpp.
2437 : _coordinates(1,coordinate_)
2438{
2439}
◆ PathMovetoAbs() [2/3]
| Magick::PathMovetoAbs::PathMovetoAbs |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2440 of file Drawable.cpp.
2441 : _coordinates(coordinates_)
2442{
2443}
◆ PathMovetoAbs() [3/3]
| Magick::PathMovetoAbs::PathMovetoAbs |
( |
const PathMovetoAbs & | original_ | ) |
|
Definition at line 2444 of file Drawable.cpp.
2445 : VPathBase (original_),
2446 _coordinates(original_._coordinates)
2447{
2448}
◆ ~PathMovetoAbs()
| Magick::PathMovetoAbs::~PathMovetoAbs |
( |
void | | ) |
|
◆ copy()
◆ operator()()
| void Magick::PathMovetoAbs::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2452 of file Drawable.cpp.
2453{
2454 for( CoordinateList::const_iterator p = _coordinates.begin();
2455 p != _coordinates.end(); p++ )
2456 {
2457 DrawPathMoveToAbsolute( context_, p->x(), p->y() );
2458 }
2459}
◆ _coordinates
| CoordinateList Magick::PathMovetoAbs::_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