Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members Related Pages
vtkPlaneSource Class Reference
create an array of quadrilaterals located in a plane.
More...
#include <vtkPlaneSource.h>
Inheritance diagram for vtkPlaneSource:
[legend]Collaboration diagram for vtkPlaneSource:
[legend]List of all members.
Public Methods |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
virtual void | SetXResolution (int) |
virtual int | GetXResolution () |
virtual void | SetYResolution (int) |
virtual int | GetYResolution () |
void | SetResolution (const int xR, const int yR) |
void | GetResolution (int &xR, int &yR) |
virtual void | SetOrigin (float, float, float) |
virtual void | SetOrigin (float[3]) |
virtual float * | GetOrigin () |
virtual void | GetOrigin (float data[3]) |
void | SetPoint1 (float x, float y, float z) |
void | SetPoint1 (float pnt[3]) |
virtual float * | GetPoint1 () |
virtual void | GetPoint1 (float data[3]) |
void | SetPoint2 (float x, float y, float z) |
void | SetPoint2 (float pnt[3]) |
virtual float * | GetPoint2 () |
virtual void | GetPoint2 (float data[3]) |
void | SetCenter (float x, float y, float z) |
void | SetCenter (float center[3]) |
virtual float * | GetCenter () |
virtual void | GetCenter (float data[3]) |
void | SetNormal (float nx, float ny, float nz) |
void | SetNormal (float n[3]) |
virtual float * | GetNormal () |
virtual void | GetNormal (float data[3]) |
void | Push (float distance) |
Static Public Methods |
int | IsTypeOf (const char *type) |
vtkPlaneSource * | SafeDownCast (vtkObject *o) |
vtkPlaneSource * | New () |
Protected Methods |
| vtkPlaneSource () |
| ~vtkPlaneSource () |
| vtkPlaneSource (const vtkPlaneSource &) |
void | operator= (const vtkPlaneSource &) |
void | Execute () |
int | UpdatePlane (float v1[3], float v2[3]) |
Protected Attributes |
int | XResolution |
int | YResolution |
float | Origin [3] |
float | Point1 [3] |
float | Point2 [3] |
float | Normal [3] |
float | Center [3] |
Detailed Description
create an array of quadrilaterals located in a plane.
-
Date:
-
2000/12/10 20:08:46
-
Revision:
-
1.45
vtkPlaneSource creates an m x n array of quadrilaterals arranged as a regular tiling in a plane. The plane is defined by specifying an origin point, and then two other points that, together with the origin, define two axes for the plane. These axes do not have to be orthogonal - so you can create a parallelogram. (The axes must not be parallel.) By default, the plane is centered at the origin and perpendicular to the z-axis, with width and height of length 1. The resolution of the plane (i.e., number of subdivisions) is controlled by the ivars XResolution and YResolution.
There are three convenience methods that allow you to easily move the plane. The first, SetNormal(), allows you to specify the plane normal. The effect of this method is to rotate the plane around the center of the plane, aligning the plane normal with the specified normal. The second, SetCenter(), translates the center of the plane to the specified center point. The third method, Push(), allows you to translate the plane along the plane normal by the distance specified. (Negative Push values translate the plane in the negative normal direction.) Note that the SetNormal(), SetCenter() and Push() methods modify the Origin, Point1, and/or Point2 ivars.
-
Warning:
-
The normal to the plane will point in the direction of the cross product of the first axis (Origin->Point1) with the second (Origin->Point2). This also affects the normals to the generated polygons.
-
Examples:
-
vtkPlaneSource (examples)
Definition at line 81 of file vtkPlaneSource.h.
Constructor & Destructor Documentation
vtkPlaneSource::vtkPlaneSource |
( |
|
) |
[protected] |
|
vtkPlaneSource::~vtkPlaneSource |
( |
|
) |
[inline, protected] |
|
vtkPlaneSource::vtkPlaneSource |
( |
const vtkPlaneSource & |
|
) |
[inline, protected] |
|
Member Function Documentation
void vtkPlaneSource::PrintSelf |
( |
ostream & |
os, |
|
|
vtkIndent |
indent |
|
) |
[virtual] |
|
|
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. |
virtual const char* vtkPlaneSource::GetClassName |
( |
|
) |
[virtual] |
|
int vtkPlaneSource::IsTypeOf |
( |
const char * |
type |
) |
[static] |
|
|
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 vtkPolyDataSource. |
virtual int vtkPlaneSource::IsA |
( |
const char * |
type |
) |
[virtual] |
|
|
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 vtkPolyDataSource. |
vtkPlaneSource* vtkPlaneSource::SafeDownCast |
( |
vtkObject * |
o |
) |
[static] |
|
|
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 vtkPolyDataSource. |
vtkPlaneSource* vtkPlaneSource::New |
( |
|
) |
[static] |
|
|
Construct plane perpendicular to z-axis, resolution 1x1, width and height 1.0, and centered at the origin.
Reimplemented from vtkPolyDataSource. |
virtual void vtkPlaneSource::SetXResolution |
( |
int |
|
) |
[virtual] |
|
|
Specify the resolution of the plane along the first axes. |
virtual int vtkPlaneSource::GetXResolution |
( |
|
) |
[virtual] |
|
virtual void vtkPlaneSource::SetYResolution |
( |
int |
|
) |
[virtual] |
|
|
Specify the resolution of the plane along the second axes. |
virtual int vtkPlaneSource::GetYResolution |
( |
|
) |
[virtual] |
|
void vtkPlaneSource::SetResolution |
( |
const int |
xR, |
|
|
const int |
yR |
|
) |
|
|
|
Set the number of x-y subdivisions in the plane. |
void vtkPlaneSource::GetResolution |
( |
int & |
xR, |
|
|
int & |
yR |
|
) |
[inline] |
|
virtual void vtkPlaneSource::SetOrigin |
( |
float |
, |
|
|
float |
, |
|
|
float |
|
|
) |
[virtual] |
|
|
Specify a point defining the origin of the plane. |
virtual void vtkPlaneSource::SetOrigin |
( |
float |
[3] |
) |
[virtual] |
|
virtual float* vtkPlaneSource::GetOrigin |
( |
|
) |
[virtual] |
|
virtual void vtkPlaneSource::GetOrigin |
( |
float |
data[3] |
) |
[virtual] |
|
void vtkPlaneSource::SetPoint1 |
( |
float |
x, |
|
|
float |
y, |
|
|
float |
z |
|
) |
|
|
|
Specify a point defining the first axis of the plane. |
void vtkPlaneSource::SetPoint1 |
( |
float |
pnt[3] |
) |
|
|
virtual float* vtkPlaneSource::GetPoint1 |
( |
|
) |
[virtual] |
|
virtual void vtkPlaneSource::GetPoint1 |
( |
float |
data[3] |
) |
[virtual] |
|
void vtkPlaneSource::SetPoint2 |
( |
float |
x, |
|
|
float |
y, |
|
|
float |
z |
|
) |
|
|
|
Specify a point defining the second axis of the plane. |
void vtkPlaneSource::SetPoint2 |
( |
float |
pnt[3] |
) |
|
|
virtual float* vtkPlaneSource::GetPoint2 |
( |
|
) |
[virtual] |
|
virtual void vtkPlaneSource::GetPoint2 |
( |
float |
data[3] |
) |
[virtual] |
|
void vtkPlaneSource::SetCenter |
( |
float |
x, |
|
|
float |
y, |
|
|
float |
z |
|
) |
|
|
|
Set/Get the center of the plane. Works in conjunction with the plane normal to position the plane. Don't use this method to define the plane. Instead, use it to move the plane to a new center point. |
void vtkPlaneSource::SetCenter |
( |
float |
center[3] |
) |
|
|
virtual float* vtkPlaneSource::GetCenter |
( |
|
) |
[virtual] |
|
virtual void vtkPlaneSource::GetCenter |
( |
float |
data[3] |
) |
[virtual] |
|
void vtkPlaneSource::SetNormal |
( |
float |
nx, |
|
|
float |
ny, |
|
|
float |
nz |
|
) |
|
|
|
Set/Get the plane normal. Works in conjunction with the plane center to orient the plane. Don't use this method to define the plane. Instead, use it to rotate the plane around the current center point. |
void vtkPlaneSource::SetNormal |
( |
float |
n[3] |
) |
|
|
virtual float* vtkPlaneSource::GetNormal |
( |
|
) |
[virtual] |
|
virtual void vtkPlaneSource::GetNormal |
( |
float |
data[3] |
) |
[virtual] |
|
void vtkPlaneSource::Push |
( |
float |
distance |
) |
|
|
|
Translate the plane in the direction of the normal by the distance specified. Negative values move the plane in the opposite direction. |
void vtkPlaneSource::operator= |
( |
const vtkPlaneSource & |
|
) |
[inline, protected] |
|
void vtkPlaneSource::Execute |
( |
|
) |
[protected, virtual] |
|
int vtkPlaneSource::UpdatePlane |
( |
float |
v1[3], |
|
|
float |
v2[3] |
|
) |
[protected] |
|
Member Data Documentation
int vtkPlaneSource::XResolution [protected]
|
|
int vtkPlaneSource::YResolution [protected]
|
|
float vtkPlaneSource::Origin[3] [protected]
|
|
float vtkPlaneSource::Point1[3] [protected]
|
|
float vtkPlaneSource::Point2[3] [protected]
|
|
float vtkPlaneSource::Normal[3] [protected]
|
|
float vtkPlaneSource::Center[3] [protected]
|
|
The documentation for this class was generated from the following file:
Generated on Wed Nov 21 12:57:21 2001 for VTK by
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001