Definition at line 2796 of file Drawable.h.
◆ PathSmoothQuadraticCurvetoRel() [1/3]
| Magick::PathSmoothQuadraticCurvetoRel::PathSmoothQuadraticCurvetoRel |
( |
const Magick::Coordinate & | coordinate_ | ) |
|
Definition at line 2093 of file Drawable.cpp.
2095 : _coordinates(1,coordinate_)
2096{
2097}
◆ PathSmoothQuadraticCurvetoRel() [2/3]
| Magick::PathSmoothQuadraticCurvetoRel::PathSmoothQuadraticCurvetoRel |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2098 of file Drawable.cpp.
2100 : _coordinates(coordinates_)
2101{
2102}
◆ PathSmoothQuadraticCurvetoRel() [3/3]
Definition at line 2103 of file Drawable.cpp.
2105 : VPathBase (original_),
2106 _coordinates(original_._coordinates)
2107{
2108}
◆ ~PathSmoothQuadraticCurvetoRel()
| Magick::PathSmoothQuadraticCurvetoRel::~PathSmoothQuadraticCurvetoRel |
( |
void | | ) |
|
◆ copy()
◆ operator()()
| void Magick::PathSmoothQuadraticCurvetoRel::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2112 of file Drawable.cpp.
2114{
2115 for( CoordinateList::const_iterator p = _coordinates.begin();
2116 p != _coordinates.end(); p++ )
2117 {
2118 DrawPathCurveToQuadraticBezierSmoothRelative( context_, p->x(), p->y() );
2119 }
2120}
◆ _coordinates
| CoordinateList Magick::PathSmoothQuadraticCurvetoRel::_coordinates |
|
private |
The documentation for this class was generated from the following files: