Magick++ 7.1.1
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
 
virtual void operator() (MagickCore::DrawingWand *context_) const =0
 
virtual VPathBasecopy () const =0
 

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 2008 of file Drawable.cpp.

2009 : _args(1,args_)
2010{
2011}

◆ PathCurvetoRel() [2/3]

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

Definition at line 2012 of file Drawable.cpp.

2013 : _args(args_)
2014{
2015}

◆ PathCurvetoRel() [3/3]

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

Definition at line 2016 of file Drawable.cpp.

2018 : VPathBase (original_),
2019 _args(original_._args)
2020{
2021}

◆ ~PathCurvetoRel()

Magick::PathCurvetoRel::~PathCurvetoRel ( void  )

Definition at line 2022 of file Drawable.cpp.

2023{
2024}

Member Function Documentation

◆ copy()

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

Implements Magick::VPathBase.

Definition at line 2035 of file Drawable.cpp.

2036{
2037 return new PathCurvetoRel(*this);
2038}

◆ operator()()

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

Implements Magick::VPathBase.

Definition at line 2025 of file Drawable.cpp.

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

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: