Definition at line 2689 of file Drawable.h.
◆ PathSmoothCurvetoAbs() [1/3]
| Magick::PathSmoothCurvetoAbs::PathSmoothCurvetoAbs |
( |
const Magick::Coordinate & | coordinates_ | ) |
|
Definition at line 2038 of file Drawable.cpp.
2040 : _coordinates(1,coordinates_)
2041{
2042}
◆ PathSmoothCurvetoAbs() [2/3]
| Magick::PathSmoothCurvetoAbs::PathSmoothCurvetoAbs |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2043 of file Drawable.cpp.
2045 : _coordinates(coordinates_)
2046{
2047}
◆ PathSmoothCurvetoAbs() [3/3]
| Magick::PathSmoothCurvetoAbs::PathSmoothCurvetoAbs |
( |
const PathSmoothCurvetoAbs & | original_ | ) |
|
Definition at line 2048 of file Drawable.cpp.
2050 : VPathBase (original_),
2051 _coordinates(original_._coordinates)
2052{
2053}
◆ ~PathSmoothCurvetoAbs()
| Magick::PathSmoothCurvetoAbs::~PathSmoothCurvetoAbs |
( |
void | | ) |
|
◆ copy()
◆ operator()()
| void Magick::PathSmoothCurvetoAbs::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2057 of file Drawable.cpp.
2059{
2060 for( CoordinateList::const_iterator p = _coordinates.begin();
2061 p != _coordinates.end(); p++ )
2062 {
2063 double x2 = p->x();
2064 double y2 = p->y();
2065 p++;
2066 if (p == _coordinates.end() )
2067 break;
2068 DrawPathCurveToSmoothAbsolute( context_, x2, y2, p->x(), p->y() );
2069 }
2070}
◆ _coordinates
| CoordinateList Magick::PathSmoothCurvetoAbs::_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