Magick++ 6.9.13
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 2370 of file Drawable.h.

Constructor & Destructor Documentation

◆ PathArcAbs() [1/3]

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

Definition at line 1640 of file Drawable.cpp.

1641 : _coordinates(1,coordinates_)
1642{
1643}

◆ PathArcAbs() [2/3]

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

Definition at line 1644 of file Drawable.cpp.

1645 : _coordinates(coordinates_)
1646{
1647}

◆ PathArcAbs() [3/3]

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

Definition at line 1648 of file Drawable.cpp.

1649 : VPathBase (original_),
1650 _coordinates(original_._coordinates)
1651{
1652}

◆ ~PathArcAbs()

Magick::PathArcAbs::~PathArcAbs ( void )

Definition at line 1653 of file Drawable.cpp.

1654{
1655}

Member Function Documentation

◆ copy()

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

Implements Magick::VPathBase.

Definition at line 1666 of file Drawable.cpp.

1667{
1668 return new PathArcAbs(*this);
1669}

◆ operator()()

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

Implements Magick::VPathBase.

Definition at line 1656 of file Drawable.cpp.

1657{
1658 for( PathArcArgsList::const_iterator p = _coordinates.begin();
1659 p != _coordinates.end(); p++ )
1660 {
1661 DrawPathEllipticArcAbsolute( context_, p->radiusX(), p->radiusY(),
1662 p->xAxisRotation(), (MagickBooleanType) p->largeArcFlag(),
1663 (MagickBooleanType) p->sweepFlag(), p->x(), p->y() );
1664 }
1665}

Member Data Documentation

◆ _coordinates

PathArcArgsList Magick::PathArcAbs::_coordinates
private

Definition at line 2392 of file Drawable.h.


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