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

Private Attributes

PathCurveToArgsList _args
 

Detailed Description

Constructor & Destructor Documentation

PathCurvetoAbs() [1/3]

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

Definition at line 1977 of file Drawable.cpp.

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

PathCurvetoAbs() [2/3]

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

Definition at line 1981 of file Drawable.cpp.

1982 : _args(args_)
1983{
1984}

PathCurvetoAbs() [3/3]

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

Definition at line 1985 of file Drawable.cpp.

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

~PathCurvetoAbs()

Magick::PathCurvetoAbs::~PathCurvetoAbs ( void  )

Definition at line 1991 of file Drawable.cpp.

1992{
1993}

Member Function Documentation

copy()

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

Implements Magick::VPathBase.

Definition at line 2004 of file Drawable.cpp.

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

operator()()

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

Implements Magick::VPathBase.

Definition at line 1994 of file Drawable.cpp.

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

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:
  • /root/im/imagemagick-7.1.1.43+dfsg1/Magick++/lib/Magick++/Drawable.h
  • /root/im/imagemagick-7.1.1.43+dfsg1/Magick++/lib/Drawable.cpp