Definition at line 2895 of file Drawable.h.
◆ PathSmoothQuadraticCurvetoRel() [1/3]
Magick::PathSmoothQuadraticCurvetoRel::PathSmoothQuadraticCurvetoRel |
( |
const Magick::Coordinate & | coordinate_ | ) |
|
Definition at line 2285 of file Drawable.cpp.
2287 : _coordinates(1,coordinate_)
2288{
2289}
◆ PathSmoothQuadraticCurvetoRel() [2/3]
Magick::PathSmoothQuadraticCurvetoRel::PathSmoothQuadraticCurvetoRel |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2290 of file Drawable.cpp.
2292 : _coordinates(coordinates_)
2293{
2294}
◆ PathSmoothQuadraticCurvetoRel() [3/3]
Definition at line 2295 of file Drawable.cpp.
2297 : VPathBase (original_),
2298 _coordinates(original_._coordinates)
2299{
2300}
◆ ~PathSmoothQuadraticCurvetoRel()
Magick::PathSmoothQuadraticCurvetoRel::~PathSmoothQuadraticCurvetoRel |
( |
void | | ) |
|
◆ copy()
◆ operator()()
void Magick::PathSmoothQuadraticCurvetoRel::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2304 of file Drawable.cpp.
2306{
2307 for( CoordinateList::const_iterator p = _coordinates.begin();
2308 p != _coordinates.end(); p++ )
2309 {
2310 DrawPathCurveToQuadraticBezierSmoothRelative( context_, p->x(), p->y() );
2311 }
2312}
◆ _coordinates
CoordinateList Magick::PathSmoothQuadraticCurvetoRel::_coordinates |
|
private |
The documentation for this class was generated from the following files: