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::floodFillTextureImage Class Reference

#include <STL.h>

Inheritance diagram for Magick::floodFillTextureImage:

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

Collaboration graph
[legend]

Public Member Functions

 floodFillTextureImage (const unsigned int x_, const unsigned int y_, const Image &texture_)
 floodFillTextureImage (const Geometry &point_, const Image &texture_)
 floodFillTextureImage (const unsigned int x_, const unsigned int y_, const Image &texture_, const Color &borderColor_)
 floodFillTextureImage (const Geometry &point_, const Image &texture_, const Color &borderColor_)
void operator() (Image &image_) const
 floodFillTextureImage (const unsigned int x_, const unsigned int y_, const Image &texture_)
 floodFillTextureImage (const Geometry &point_, const Image &texture_)
 floodFillTextureImage (const unsigned int x_, const unsigned int y_, const Image &texture_, const Color &borderColor_)
 floodFillTextureImage (const Geometry &point_, const Image &texture_, const Color &borderColor_)
void operator() (Image &image_) const

Private Attributes

unsigned int _x
unsigned int _y
Image _texture
Color _borderColor

Constructor & Destructor Documentation

Magick::floodFillTextureImage::floodFillTextureImage const unsigned int  x_,
const unsigned int  y_,
const Image texture_
 

Definition at line 384 of file STL.cpp.

References floodFillTextureImage().

Referenced by floodFillTextureImage().

00387 : _x(x_), 00388 _y(y_), 00389 _texture(texture_), 00390 _borderColor() 00391 { 00392 }

Here is the call graph for this function:

Magick::floodFillTextureImage::floodFillTextureImage const Geometry point_,
const Image texture_
 

Definition at line 393 of file STL.cpp.

References floodFillTextureImage().

00395 : _x(point_.xOff()), 00396 _y(point_.yOff()), 00397 _texture(texture_), 00398 _borderColor() 00399 { 00400 }

Here is the call graph for this function:

Magick::floodFillTextureImage::floodFillTextureImage const unsigned int  x_,
const unsigned int  y_,
const Image texture_,
const Color borderColor_
 

Definition at line 404 of file STL.cpp.

References floodFillTextureImage().

00408 : _x(x_), 00409 _y(y_), 00410 _texture(texture_), 00411 _borderColor(borderColor_) 00412 { 00413 }

Here is the call graph for this function:

Magick::floodFillTextureImage::floodFillTextureImage const Geometry point_,
const Image texture_,
const Color borderColor_
 

Definition at line 414 of file STL.cpp.

References floodFillTextureImage().

00417 : _x(point_.xOff()), 00418 _y(point_.yOff()), 00419 _texture(texture_), 00420 _borderColor(borderColor_) 00421 { 00422 }

Here is the call graph for this function:

Magick::floodFillTextureImage::floodFillTextureImage const unsigned int  x_,
const unsigned int  y_,
const Image texture_
 

Magick::floodFillTextureImage::floodFillTextureImage const Geometry point_,
const Image texture_
 

Magick::floodFillTextureImage::floodFillTextureImage const unsigned int  x_,
const unsigned int  y_,
const Image texture_,
const Color borderColor_
 

Magick::floodFillTextureImage::floodFillTextureImage const Geometry point_,
const Image texture_,
const Color borderColor_
 


Member Function Documentation

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

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

Definition at line 423 of file STL.cpp.

References _borderColor, _texture, _x, _y, Magick::Image::floodFillTexture(), Magick::Color::isValid(), and operator()().

Referenced by operator()().

00424 { 00425 if ( _borderColor.isValid() ) 00426 { 00427 image_.floodFillTexture( _x, _y, _texture, _borderColor ); 00428 } 00429 else 00430 { 00431 image_.floodFillTexture( _x, _y, _texture ); 00432 } 00433 }

Here is the call graph for this function:


Field Documentation

Color Magick::floodFillTextureImage::_borderColor [private]
 

Definition at line 447 of file STL.h.

Referenced by operator()().

Image Magick::floodFillTextureImage::_texture [private]
 

Definition at line 446 of file STL.h.

Referenced by operator()().

unsigned int Magick::floodFillTextureImage::_x [private]
 

Definition at line 444 of file STL.h.

Referenced by operator()().

unsigned int Magick::floodFillTextureImage::_y [private]
 

Definition at line 445 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:17 2004 for ImageMagick by doxygen 1.3.7
ImageMagick Copyright © 2004, ImageMagick Studio LLC