Magick++ 7.1.1
Loading...
Searching...
No Matches
Magick::PathArcAbs Class Reference
Inheritance diagram for Magick::PathArcAbs:
Collaboration diagram for Magick::PathArcAbs:

Public Member Functions

 PathArcAbs (const PathArcArgs &coordinates_)
 
 PathArcAbs (const PathArcArgsList &coordinates_)
 
 PathArcAbs (const PathArcAbs &original_)
 
void operator() (MagickCore::DrawingWand *context_) const
 
VPathBasecopy () const
 
virtual void operator() (MagickCore::DrawingWand *context_) const =0
 
virtual VPathBasecopy () const =0
 

Private Attributes

PathArcArgsList _coordinates
 

Detailed Description

Definition at line 2469 of file Drawable.h.

Constructor & Destructor Documentation

◆ PathArcAbs() [1/3]

Magick::PathArcAbs::PathArcAbs ( const PathArcArgs coordinates_)

Definition at line 1830 of file Drawable.cpp.

1831 : _coordinates(1,coordinates_)
1832{
1833}

◆ PathArcAbs() [2/3]

Magick::PathArcAbs::PathArcAbs ( const PathArcArgsList &  coordinates_)

Definition at line 1834 of file Drawable.cpp.

1835 : _coordinates(coordinates_)
1836{
1837}

◆ PathArcAbs() [3/3]

Magick::PathArcAbs::PathArcAbs ( const PathArcAbs original_)

Definition at line 1838 of file Drawable.cpp.

1839 : VPathBase (original_),
1840 _coordinates(original_._coordinates)
1841{
1842}

◆ ~PathArcAbs()

Magick::PathArcAbs::~PathArcAbs ( void  )

Definition at line 1843 of file Drawable.cpp.

1844{
1845}

Member Function Documentation

◆ copy()

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

Implements Magick::VPathBase.

Definition at line 1856 of file Drawable.cpp.

1857{
1858 return new PathArcAbs(*this);
1859}

◆ operator()()

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

Implements Magick::VPathBase.

Definition at line 1846 of file Drawable.cpp.

1847{
1848 for( PathArcArgsList::const_iterator p = _coordinates.begin();
1849 p != _coordinates.end(); p++ )
1850 {
1851 DrawPathEllipticArcAbsolute( context_, p->radiusX(), p->radiusY(),
1852 p->xAxisRotation(), (MagickBooleanType) p->largeArcFlag(),
1853 (MagickBooleanType) p->sweepFlag(), p->x(), p->y() );
1854 }
1855}

Member Data Documentation

◆ _coordinates

PathArcArgsList Magick::PathArcAbs::_coordinates
private

Definition at line 2491 of file Drawable.h.


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