Definition at line 2871 of file Drawable.h.
◆ PathSmoothQuadraticCurvetoAbs() [1/3]
Magick::PathSmoothQuadraticCurvetoAbs::PathSmoothQuadraticCurvetoAbs |
( |
const Magick::Coordinate & | coordinate_ | ) |
|
Definition at line 2253 of file Drawable.cpp.
2255 : _coordinates(1,coordinate_)
2256{
2257}
◆ PathSmoothQuadraticCurvetoAbs() [2/3]
Magick::PathSmoothQuadraticCurvetoAbs::PathSmoothQuadraticCurvetoAbs |
( |
const CoordinateList & | coordinates_ | ) |
|
Definition at line 2258 of file Drawable.cpp.
2260 : _coordinates(coordinates_)
2261{
2262}
◆ PathSmoothQuadraticCurvetoAbs() [3/3]
Definition at line 2263 of file Drawable.cpp.
2265 : VPathBase (original_),
2266 _coordinates(original_._coordinates)
2267{
2268}
◆ ~PathSmoothQuadraticCurvetoAbs()
Magick::PathSmoothQuadraticCurvetoAbs::~PathSmoothQuadraticCurvetoAbs |
( |
void | | ) |
|
◆ copy()
◆ operator()()
void Magick::PathSmoothQuadraticCurvetoAbs::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Implements Magick::VPathBase.
Definition at line 2272 of file Drawable.cpp.
2274{
2275 for( CoordinateList::const_iterator p = _coordinates.begin();
2276 p != _coordinates.end(); p++ )
2277 {
2278 DrawPathCurveToQuadraticBezierSmoothAbsolute( context_, p->x(), p->y() );
2279 }
2280}
◆ _coordinates
CoordinateList Magick::PathSmoothQuadraticCurvetoAbs::_coordinates |
|
private |
The documentation for this class was generated from the following files: