Magick++ 6.9.13
Loading...
Searching...
No Matches
Magick::PathCurvetoRel Class Reference
Inheritance diagram for Magick::PathCurvetoRel:
Collaboration diagram for Magick::PathCurvetoRel:

Public Member Functions

 PathCurvetoRel (const PathCurvetoArgs &args_)
 
 PathCurvetoRel (const PathCurveToArgsList &args_)
 
 PathCurvetoRel (const PathCurvetoRel &original_)
 
void operator() (MagickCore::DrawingWand *context_) const
 
VPathBasecopy () const
 

Private Attributes

PathCurveToArgsList _args
 

Detailed Description

Definition at line 2567 of file Drawable.h.

Constructor & Destructor Documentation

◆ PathCurvetoRel() [1/3]

Magick::PathCurvetoRel::PathCurvetoRel ( const PathCurvetoArgs & args_)

Definition at line 1818 of file Drawable.cpp.

1819 : _args(1,args_)
1820{
1821}

◆ PathCurvetoRel() [2/3]

Magick::PathCurvetoRel::PathCurvetoRel ( const PathCurveToArgsList & args_)

Definition at line 1822 of file Drawable.cpp.

1823 : _args(args_)
1824{
1825}

◆ PathCurvetoRel() [3/3]

Magick::PathCurvetoRel::PathCurvetoRel ( const PathCurvetoRel & original_)

Definition at line 1826 of file Drawable.cpp.

1828 : VPathBase (original_),
1829 _args(original_._args)
1830{
1831}

◆ ~PathCurvetoRel()

Magick::PathCurvetoRel::~PathCurvetoRel ( void )

Definition at line 1832 of file Drawable.cpp.

1833{
1834}

Member Function Documentation

◆ copy()

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

Implements Magick::VPathBase.

Definition at line 1845 of file Drawable.cpp.

1846{
1847 return new PathCurvetoRel(*this);
1848}

◆ operator()()

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

Implements Magick::VPathBase.

Definition at line 1835 of file Drawable.cpp.

1837{
1838 for( PathCurveToArgsList::const_iterator p = _args.begin();
1839 p != _args.end(); p++ )
1840 {
1841 DrawPathCurveToRelative( context_, p->x1(), p->y1(), p->x2(), p->y2(),
1842 p->x(), p->y() );
1843 }
1844}

Member Data Documentation

◆ _args

PathCurveToArgsList Magick::PathCurvetoRel::_args
private

Definition at line 2588 of file Drawable.h.


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