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