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

Public Member Functions

 PathArcRel (const PathArcArgs &coordinates_)
 PathArcRel (const PathArcArgsList &coordinates_)
 PathArcRel (const PathArcRel &original_)
void operator() (MagickCore::DrawingWand *context_) const
VPathBase * copy () const

Private Attributes

PathArcArgsList _coordinates

Detailed Description

Definition at line 2493 of file Drawable.h.

Constructor & Destructor Documentation

◆ PathArcRel() [1/3]

Magick::PathArcRel::PathArcRel ( const PathArcArgs & coordinates_)

Definition at line 1860 of file Drawable.cpp.

1861 : _coordinates(1,coordinates_)
1862{
1863}

◆ PathArcRel() [2/3]

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

Definition at line 1864 of file Drawable.cpp.

1865 : _coordinates(coordinates_)
1866{
1867}

◆ PathArcRel() [3/3]

Magick::PathArcRel::PathArcRel ( const PathArcRel & original_)

Definition at line 1868 of file Drawable.cpp.

1869 : VPathBase (original_),
1870 _coordinates(original_._coordinates)
1871{
1872}

◆ ~PathArcRel()

Magick::PathArcRel::~PathArcRel ( void )

Definition at line 1873 of file Drawable.cpp.

1874{
1875}

Member Function Documentation

◆ copy()

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

Implements Magick::VPathBase.

Definition at line 1886 of file Drawable.cpp.

1887{
1888 return new PathArcRel(*this);
1889}

◆ operator()()

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

Implements Magick::VPathBase.

Definition at line 1876 of file Drawable.cpp.

1877{
1878 for( PathArcArgsList::const_iterator p = _coordinates.begin();
1879 p != _coordinates.end(); p++ )
1880 {
1881 DrawPathEllipticArcRelative( context_, p->radiusX(), p->radiusY(),
1882 p->xAxisRotation(), (MagickBooleanType) p->largeArcFlag(),
1883 (MagickBooleanType) p->sweepFlag(), p->x(), p->y() );
1884 }
1885}

Field Documentation

◆ _coordinates

PathArcArgsList Magick::PathArcRel::_coordinates
private

Definition at line 2513 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