Definition at line 2713 of file Drawable.h.
◆ PathSmoothCurvetoRel() [1/3]
Magick::PathSmoothCurvetoRel::PathSmoothCurvetoRel |
( |
const Coordinate & | coordinates_ | ) |
|
Definition at line 2078 of file Drawable.cpp.
2080 : _coordinates(1,coordinates_)
2081{
2082}
◆ PathSmoothCurvetoRel() [2/3]
Magick::PathSmoothCurvetoRel::PathSmoothCurvetoRel |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2083 of file Drawable.cpp.
2085 : _coordinates(coordinates_)
2086{
2087}
◆ PathSmoothCurvetoRel() [3/3]
Definition at line 2088 of file Drawable.cpp.
2090 : VPathBase (original_),
2091 _coordinates(original_._coordinates)
2092{
2093}
◆ ~PathSmoothCurvetoRel()
Magick::PathSmoothCurvetoRel::~PathSmoothCurvetoRel |
( |
void | | ) |
|
◆ copy()
◆ operator()()
void Magick::PathSmoothCurvetoRel::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2097 of file Drawable.cpp.
2099{
2100 for( CoordinateList::const_iterator p = _coordinates.begin();
2101 p != _coordinates.end(); p++ )
2102 {
2103 double x2 = p->x();
2104 double y2 = p->y();
2105 p++;
2106 if (p == _coordinates.end() )
2107 break;
2108 DrawPathCurveToSmoothRelative( context_, x2, y2, p->x(), p->y() );
2109 }
2110}
◆ _coordinates
CoordinateList Magick::PathSmoothCurvetoRel::_coordinates |
|
private |
The documentation for this class was generated from the following files: