Definition at line 3014 of file Drawable.h.
◆ PathMovetoRel() [1/3]
Definition at line 2275 of file Drawable.cpp.
2276 : _coordinates(1,coordinate_)
2277{
2278}
◆ PathMovetoRel() [2/3]
| Magick::PathMovetoRel::PathMovetoRel |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2279 of file Drawable.cpp.
2280 : _coordinates(coordinates_)
2281{
2282}
◆ PathMovetoRel() [3/3]
| Magick::PathMovetoRel::PathMovetoRel |
( |
const PathMovetoRel & | original_ | ) |
|
Definition at line 2283 of file Drawable.cpp.
2284 : VPathBase (original_),
2285 _coordinates(original_._coordinates)
2286{
2287}
◆ ~PathMovetoRel()
| Magick::PathMovetoRel::~PathMovetoRel |
( |
void | | ) |
|
◆ copy()
◆ operator()()
| void Magick::PathMovetoRel::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2291 of file Drawable.cpp.
2292{
2293 for( CoordinateList::const_iterator p = _coordinates.begin();
2294 p != _coordinates.end(); p++ )
2295 {
2296 DrawPathMoveToRelative( context_, p->x(), p->y() );
2297 }
2298}
◆ _coordinates
| CoordinateList Magick::PathMovetoRel::_coordinates |
|
private |
The documentation for this class was generated from the following files: