Definition at line 2947 of file Drawable.h.
◆ PathLinetoRel() [1/3]
Definition at line 2346 of file Drawable.cpp.
2347 : _coordinates(1,coordinate_)
2348{
2349}
◆ PathLinetoRel() [2/3]
| Magick::PathLinetoRel::PathLinetoRel |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2350 of file Drawable.cpp.
2351 : _coordinates(coordinates_)
2352{
2353}
◆ PathLinetoRel() [3/3]
| Magick::PathLinetoRel::PathLinetoRel |
( |
const PathLinetoRel & | original_ | ) |
|
Definition at line 2354 of file Drawable.cpp.
2355 : VPathBase (original_),
2356 _coordinates(original_._coordinates)
2357{
2358}
◆ ~PathLinetoRel()
| Magick::PathLinetoRel::~PathLinetoRel |
( |
void | | ) |
|
◆ copy()
◆ operator()()
| void Magick::PathLinetoRel::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2362 of file Drawable.cpp.
2363{
2364 for( CoordinateList::const_iterator p = _coordinates.begin();
2365 p != _coordinates.end(); p++ )
2366 {
2367 DrawPathLineToRelative( context_, p->x(), p->y() );
2368 }
2369}
◆ _coordinates
| CoordinateList Magick::PathLinetoRel::_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