Definition at line 2923 of file Drawable.h.
◆ PathLinetoAbs() [1/3]
Definition at line 2318 of file Drawable.cpp.
2319 : _coordinates(1,coordinate_)
2320{
2321}
◆ PathLinetoAbs() [2/3]
| Magick::PathLinetoAbs::PathLinetoAbs |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2322 of file Drawable.cpp.
2323 : _coordinates(coordinates_)
2324{
2325}
◆ PathLinetoAbs() [3/3]
| Magick::PathLinetoAbs::PathLinetoAbs |
( |
const PathLinetoAbs & | original_ | ) |
|
Definition at line 2326 of file Drawable.cpp.
2327 : VPathBase (original_),
2328 _coordinates(original_._coordinates)
2329{
2330}
◆ ~PathLinetoAbs()
| Magick::PathLinetoAbs::~PathLinetoAbs |
( |
void | | ) |
|
◆ copy()
◆ operator()()
| void Magick::PathLinetoAbs::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2334 of file Drawable.cpp.
2335{
2336 for( CoordinateList::const_iterator p = _coordinates.begin();
2337 p != _coordinates.end(); p++ )
2338 {
2339 DrawPathLineToAbsolute( context_, p->x(), p->y() );
2340 }
2341}
◆ _coordinates
| CoordinateList Magick::PathLinetoAbs::_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