#include <vtkImageMandelbrotSource.h>
Inheritance diagram for vtkImageMandelbrotSource:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | SetWholeExtent (int extent[6]) |
void | SetWholeExtent (int minX, int maxX, int minY, int maxY, int minZ, int maxZ) |
virtual int * | GetWholeExtent () |
virtual void | GetWholeExtent (int &, int &, int &, int &, int &, int &) |
virtual void | GetWholeExtent (int[6]) |
virtual void | SetProjectionAxes (int, int, int) |
virtual void | SetProjectionAxes (int[3]) |
virtual int * | GetProjectionAxes () |
virtual void | GetProjectionAxes (int &, int &, int &) |
virtual void | GetProjectionAxes (int[3]) |
virtual void | SetOriginCX (double, double, double, double) |
virtual void | SetOriginCX (double[4]) |
virtual double * | GetOriginCX () |
virtual void | GetOriginCX (double &, double &, double &, double &) |
virtual void | GetOriginCX (double[4]) |
virtual void | SetSampleCX (double, double, double, double) |
virtual void | SetSampleCX (double[4]) |
virtual double * | GetSampleCX () |
virtual void | GetSampleCX (double &, double &, double &, double &) |
virtual void | GetSampleCX (double[4]) |
virtual void | SetMaximumNumberOfIterations (unsigned short) |
virtual unsigned short | GetMaximumNumberOfIterations () |
void | Zoom (double factor) |
void | Pan (double x, double y, double z) |
void | CopyOriginAndSample (vtkImageMandelbrotSource *source) |
void | SetSample (double v) |
Static Public Methods | |
vtkImageMandelbrotSource * | New () |
int | IsTypeOf (const char *type) |
vtkImageMandelbrotSource * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkImageMandelbrotSource () | |
~vtkImageMandelbrotSource () | |
vtkImageMandelbrotSource (const vtkImageMandelbrotSource &) | |
void | operator= (const vtkImageMandelbrotSource &) |
void | Execute (vtkImageData *outData) |
void | Execute () |
void | ExecuteInformation () |
float | EvaluateSet (double p[4]) |
Protected Attributes | |
int | ProjectionAxes [3] |
int | WholeExtent [6] |
double | OriginCX [4] |
double | SampleCX [4] |
unsigned short | MaximumNumberOfIterations |
|
Convienence for Viewer. Copy the OriginCX and the SpacingCX. What about other parameters ??? |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkImageSource. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkImageSource. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkImageSource. |
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkImageSource. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkSource. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkImageSource. |
|
The maximum number of cycles run to see if the value goes over 2 |
|
Imaginary and real value for C (constant in equation) and X (initial value). |
|
Set the projection from the 4D space (4 parameters / 2 imaginary numbers) to the axes of the 3D Volume. 0=C_Real, 1=C_Imaginary, 2=X_Real, 4=X_Imaginary |
|
Convienence/Legacy - set all the spacing values the same. |
|
Imaginary and real value for C (constant in equation) and X (initial value). |
|
Set/Get the extent of the whole output Volume. |
|
Convienence for Viewer. Pan 3D volume relative to spacing. Zoom constant factor. |