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

Public Member Functions

 PathCurvetoRel (const PathCurvetoArgs &args_)
 PathCurvetoRel (const PathCurveToArgsList &args_)
 PathCurvetoRel (const PathCurvetoRel &original_)
void operator() (MagickCore::DrawingWand *context_) const
VPathBase * copy () 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 2007 of file Drawable.cpp.

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

◆ PathCurvetoRel() [2/3]

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

Definition at line 2011 of file Drawable.cpp.

2012 : _args(args_)
2013{
2014}

◆ PathCurvetoRel() [3/3]

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

Definition at line 2015 of file Drawable.cpp.

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

◆ ~PathCurvetoRel()

Magick::PathCurvetoRel::~PathCurvetoRel ( void )

Definition at line 2021 of file Drawable.cpp.

2022{
2023}

Member Function Documentation

◆ copy()

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

Implements Magick::VPathBase.

Definition at line 2034 of file Drawable.cpp.

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

◆ operator()()

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

Implements Magick::VPathBase.

Definition at line 2024 of file Drawable.cpp.

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

Field 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:
  • /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