Magick++ 7.1.2-32
Convert, Edit, Or Compose Bitmap Images
Loading...
Searching...
No Matches
Magick::PathArcAbs Class Reference
Inheritance diagram for Magick::PathArcAbs:
Magick::VPathBase

Public Member Functions

 PathArcAbs (const PathArcArgs &coordinates_)
 PathArcAbs (const PathArcArgsList &coordinates_)
 PathArcAbs (const PathArcAbs &original_)
void operator() (MagickCore::DrawingWand *context_) const
VPathBase * copy () 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 1829 of file Drawable.cpp.

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

◆ PathArcAbs() [2/3]

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

Definition at line 1833 of file Drawable.cpp.

1834 : _coordinates(coordinates_)
1835{
1836}

◆ PathArcAbs() [3/3]

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

Definition at line 1837 of file Drawable.cpp.

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

◆ ~PathArcAbs()

Magick::PathArcAbs::~PathArcAbs ( void )

Definition at line 1842 of file Drawable.cpp.

1843{
1844}

Member Function Documentation

◆ copy()

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

Implements Magick::VPathBase.

Definition at line 1855 of file Drawable.cpp.

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

◆ operator()()

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

Implements Magick::VPathBase.

Definition at line 1845 of file Drawable.cpp.

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

Field 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:
  • /home/cristy/Attic/Build/ImageMagick-7.1.2/rpmbuild/BUILD/ImageMagick-7.1.2-build/ImageMagick-7.1.2-32/Magick++/lib/Magick++/Drawable.h
  • /home/cristy/Attic/Build/ImageMagick-7.1.2/rpmbuild/BUILD/ImageMagick-7.1.2-build/ImageMagick-7.1.2-32/Magick++/lib/Drawable.cpp