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

Public Member Functions

 PathCurvetoAbs (const PathCurvetoArgs &args_)
 PathCurvetoAbs (const PathCurveToArgsList &args_)
 PathCurvetoAbs (const PathCurvetoAbs &original_)
void operator() (MagickCore::DrawingWand *context_) const
VPathBase * copy () const

Private Attributes

PathCurveToArgsList _args

Detailed Description

Definition at line 2642 of file Drawable.h.

Constructor & Destructor Documentation

◆ PathCurvetoAbs() [1/3]

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

Definition at line 1976 of file Drawable.cpp.

1977 : _args(1,args_)
1978{
1979}

◆ PathCurvetoAbs() [2/3]

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

Definition at line 1980 of file Drawable.cpp.

1981 : _args(args_)
1982{
1983}

◆ PathCurvetoAbs() [3/3]

Magick::PathCurvetoAbs::PathCurvetoAbs ( const PathCurvetoAbs & original_)

Definition at line 1984 of file Drawable.cpp.

1986 : VPathBase (original_),
1987 _args(original_._args)
1988{
1989}

◆ ~PathCurvetoAbs()

Magick::PathCurvetoAbs::~PathCurvetoAbs ( void )

Definition at line 1990 of file Drawable.cpp.

1991{
1992}

Member Function Documentation

◆ copy()

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

Implements Magick::VPathBase.

Definition at line 2003 of file Drawable.cpp.

2004{
2005 return new PathCurvetoAbs(*this);
2006}

◆ operator()()

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

Implements Magick::VPathBase.

Definition at line 1993 of file Drawable.cpp.

1995{
1996 for( PathCurveToArgsList::const_iterator p = _args.begin();
1997 p != _args.end(); p++ )
1998 {
1999 DrawPathCurveToAbsolute( context_, p->x1(), p->y1(), p->x2(), p->y2(),
2000 p->x(), p->y() );
2001 }
2002}

Field Documentation

◆ _args

PathCurveToArgsList Magick::PathCurvetoAbs::_args
private

Definition at line 2664 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