Definition at line 2923 of file Drawable.h.
◆ PathLinetoAbs() [1/3]
Definition at line 2319 of file Drawable.cpp.
2320 : _coordinates(1,coordinate_)
2321{
2322}
◆ PathLinetoAbs() [2/3]
Magick::PathLinetoAbs::PathLinetoAbs |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2323 of file Drawable.cpp.
2324 : _coordinates(coordinates_)
2325{
2326}
◆ PathLinetoAbs() [3/3]
Magick::PathLinetoAbs::PathLinetoAbs |
( |
const PathLinetoAbs & | original_ | ) |
|
Definition at line 2327 of file Drawable.cpp.
2328 : VPathBase (original_),
2329 _coordinates(original_._coordinates)
2330{
2331}
◆ ~PathLinetoAbs()
Magick::PathLinetoAbs::~PathLinetoAbs |
( |
void | | ) |
|
◆ copy()
◆ operator()()
void Magick::PathLinetoAbs::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2335 of file Drawable.cpp.
2336{
2337 for( CoordinateList::const_iterator p = _coordinates.begin();
2338 p != _coordinates.end(); p++ )
2339 {
2340 DrawPathLineToAbsolute( context_, p->x(), p->y() );
2341 }
2342}
◆ _coordinates
CoordinateList Magick::PathLinetoAbs::_coordinates |
|
private |
The documentation for this class was generated from the following files: