Definition at line 2947 of file Drawable.h.
◆ PathLinetoRel() [1/3]
Definition at line 2347 of file Drawable.cpp.
2348 : _coordinates(1,coordinate_)
2349{
2350}
◆ PathLinetoRel() [2/3]
Magick::PathLinetoRel::PathLinetoRel |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2351 of file Drawable.cpp.
2352 : _coordinates(coordinates_)
2353{
2354}
◆ PathLinetoRel() [3/3]
Magick::PathLinetoRel::PathLinetoRel |
( |
const PathLinetoRel & | original_ | ) |
|
Definition at line 2355 of file Drawable.cpp.
2356 : VPathBase (original_),
2357 _coordinates(original_._coordinates)
2358{
2359}
◆ ~PathLinetoRel()
Magick::PathLinetoRel::~PathLinetoRel |
( |
void | | ) |
|
◆ copy()
◆ operator()()
void Magick::PathLinetoRel::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2363 of file Drawable.cpp.
2364{
2365 for( CoordinateList::const_iterator p = _coordinates.begin();
2366 p != _coordinates.end(); p++ )
2367 {
2368 DrawPathLineToRelative( context_, p->x(), p->y() );
2369 }
2370}
◆ _coordinates
CoordinateList Magick::PathLinetoRel::_coordinates |
|
private |
The documentation for this class was generated from the following files: