Definition at line 3113 of file Drawable.h.
◆ PathMovetoRel() [1/3]
Definition at line 2464 of file Drawable.cpp.
2465 : _coordinates(1,coordinate_)
2466{
2467}
◆ PathMovetoRel() [2/3]
| Magick::PathMovetoRel::PathMovetoRel |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2468 of file Drawable.cpp.
2469 : _coordinates(coordinates_)
2470{
2471}
◆ PathMovetoRel() [3/3]
| Magick::PathMovetoRel::PathMovetoRel |
( |
const PathMovetoRel & | original_ | ) |
|
Definition at line 2472 of file Drawable.cpp.
2473 : VPathBase (original_),
2474 _coordinates(original_._coordinates)
2475{
2476}
◆ ~PathMovetoRel()
| Magick::PathMovetoRel::~PathMovetoRel |
( |
void | | ) |
|
◆ copy()
◆ operator()()
| void Magick::PathMovetoRel::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2480 of file Drawable.cpp.
2481{
2482 for( CoordinateList::const_iterator p = _coordinates.begin();
2483 p != _coordinates.end(); p++ )
2484 {
2485 DrawPathMoveToRelative( context_, p->x(), p->y() );
2486 }
2487}
◆ _coordinates
| CoordinateList Magick::PathMovetoRel::_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