Magick++ 7.1.2
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 2666 of file Drawable.h.

Constructor & Destructor Documentation

◆ PathCurvetoRel() [1/3]

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

Definition at line 2010 of file Drawable.cpp.

2011 : _args(1,args_)
2012{
2013}

◆ PathCurvetoRel() [2/3]

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

Definition at line 2014 of file Drawable.cpp.

2015 : _args(args_)
2016{
2017}

◆ PathCurvetoRel() [3/3]

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

Definition at line 2018 of file Drawable.cpp.

2020 : VPathBase (original_),
2021 _args(original_._args)
2022{
2023}

◆ ~PathCurvetoRel()

Magick::PathCurvetoRel::~PathCurvetoRel ( void )

Definition at line 2024 of file Drawable.cpp.

2025{
2026}

Member Function Documentation

◆ copy()

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

Implements Magick::VPathBase.

Definition at line 2037 of file Drawable.cpp.

2038{
2039 return new PathCurvetoRel(*this);
2040}

◆ operator()()

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

Implements Magick::VPathBase.

Definition at line 2027 of file Drawable.cpp.

2029{
2030 for( PathCurveToArgsList::const_iterator p = _args.begin();
2031 p != _args.end(); p++ )
2032 {
2033 DrawPathCurveToRelative( context_, p->x1(), p->y1(), p->x2(), p->y2(),
2034 p->x(), p->y() );
2035 }
2036}

Member Data Documentation

◆ _args

PathCurveToArgsList Magick::PathCurvetoRel::_args
private

Definition at line 2687 of file Drawable.h.


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