Magick++ 7.1.2
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
 

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 1832 of file Drawable.cpp.

1833 : _coordinates(1,coordinates_)
1834{
1835}

◆ PathArcAbs() [2/3]

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

Definition at line 1836 of file Drawable.cpp.

1837 : _coordinates(coordinates_)
1838{
1839}

◆ PathArcAbs() [3/3]

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

Definition at line 1840 of file Drawable.cpp.

1841 : VPathBase (original_),
1842 _coordinates(original_._coordinates)
1843{
1844}

◆ ~PathArcAbs()

Magick::PathArcAbs::~PathArcAbs ( void )

Definition at line 1845 of file Drawable.cpp.

1846{
1847}

Member Function Documentation

◆ copy()

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

Implements Magick::VPathBase.

Definition at line 1858 of file Drawable.cpp.

1859{
1860 return new PathArcAbs(*this);
1861}

◆ operator()()

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

Implements Magick::VPathBase.

Definition at line 1848 of file Drawable.cpp.

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

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: