Powered by Pair ImageMagick logo
Image Magick
Main Page | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals | Related Pages

Magick::rollImage Class Reference

#include <STL.h>

Inheritance diagram for Magick::rollImage:

Inheritance graph
[legend]
Collaboration diagram for Magick::rollImage:

Collaboration graph
[legend]

Public Member Functions

 rollImage (const Geometry &roll_)
 rollImage (const int columns_, const int rows_)
void operator() (Image &image_) const
 rollImage (const Geometry &roll_)
 rollImage (const int columns_, const int rows_)
void operator() (Image &image_) const

Private Attributes

int _columns
int _rows

Constructor & Destructor Documentation

Magick::rollImage::rollImage const Geometry roll_  ) 
 

Definition at line 710 of file STL.cpp.

References rollImage().

Referenced by rollImage().

00711 : _columns( roll_.width() ), 00712 _rows( roll_.height() ) 00713 { 00714 }

Here is the call graph for this function:

Magick::rollImage::rollImage const int  columns_,
const int  rows_
 

Definition at line 715 of file STL.cpp.

References rollImage().

00717 : _columns( columns_ ), 00718 _rows( rows_ ) 00719 { 00720 }

Here is the call graph for this function:

Magick::rollImage::rollImage const Geometry roll_  ) 
 

Magick::rollImage::rollImage const int  columns_,
const int  rows_
 


Member Function Documentation

void Magick::rollImage::operator() Image image_  )  const
 

void Magick::rollImage::operator() Image image_  )  const
 

Definition at line 721 of file STL.cpp.

References _columns, _rows, operator()(), and Magick::Image::roll().

Referenced by operator()().

00722 { 00723 image_.roll( _columns, _rows ); 00724 }

Here is the call graph for this function:


Field Documentation

int Magick::rollImage::_columns [private]
 

Definition at line 768 of file STL.h.

Referenced by operator()().

int Magick::rollImage::_rows [private]
 

Definition at line 769 of file STL.h.

Referenced by operator()().


The documentation for this class was generated from the following files:
Generated on Mon Oct 25 13:48:20 2004 for ImageMagick by doxygen 1.3.7
ImageMagick Copyright © 2004, ImageMagick Studio LLC