Magick++ 6.9.13
Loading...
Searching...
No Matches
Magick::PathMovetoAbs Class Reference
Inheritance diagram for Magick::PathMovetoAbs:
Collaboration diagram for Magick::PathMovetoAbs:

Public Member Functions

 PathMovetoAbs (const Magick::Coordinate &coordinate_)
 
 PathMovetoAbs (const CoordinateList &coordinates_)
 
 PathMovetoAbs (const PathMovetoAbs &original_)
 
void operator() (MagickCore::DrawingWand *context_) const
 
VPathBasecopy () const
 

Private Attributes

CoordinateList _coordinates
 

Detailed Description

Definition at line 2990 of file Drawable.h.

Constructor & Destructor Documentation

◆ PathMovetoAbs() [1/3]

Magick::PathMovetoAbs::PathMovetoAbs ( const Magick::Coordinate & coordinate_)

Definition at line 2247 of file Drawable.cpp.

2248 : _coordinates(1,coordinate_)
2249{
2250}

◆ PathMovetoAbs() [2/3]

Magick::PathMovetoAbs::PathMovetoAbs ( const CoordinateList & coordinates_)

Definition at line 2251 of file Drawable.cpp.

2252 : _coordinates(coordinates_)
2253{
2254}

◆ PathMovetoAbs() [3/3]

Magick::PathMovetoAbs::PathMovetoAbs ( const PathMovetoAbs & original_)

Definition at line 2255 of file Drawable.cpp.

2256 : VPathBase (original_),
2257 _coordinates(original_._coordinates)
2258{
2259}

◆ ~PathMovetoAbs()

Magick::PathMovetoAbs::~PathMovetoAbs ( void )

Definition at line 2260 of file Drawable.cpp.

2261{
2262}

Member Function Documentation

◆ copy()

Magick::VPathBase * Magick::PathMovetoAbs::copy ( ) const
virtual

Implements Magick::VPathBase.

Definition at line 2271 of file Drawable.cpp.

2272{
2273 return new PathMovetoAbs(*this);
2274}

◆ operator()()

void Magick::PathMovetoAbs::operator() ( MagickCore::DrawingWand * context_) const
virtual

Implements Magick::VPathBase.

Definition at line 2263 of file Drawable.cpp.

2264{
2265 for( CoordinateList::const_iterator p = _coordinates.begin();
2266 p != _coordinates.end(); p++ )
2267 {
2268 DrawPathMoveToAbsolute( context_, p->x(), p->y() );
2269 }
2270}

Member Data Documentation

◆ _coordinates

CoordinateList Magick::PathMovetoAbs::_coordinates
private

Definition at line 3012 of file Drawable.h.


The documentation for this class was generated from the following files: