#include <vtkPoints.h>
Inheritance diagram for vtkPoints:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual int | Allocate (const vtkIdType sz, const vtkIdType ext=1000) |
virtual void | Initialize () |
vtkPoints * | MakeObject () |
virtual int | GetDataType () |
void * | GetVoidPointer (const int id) |
virtual void | Squeeze () |
virtual void | Reset () |
unsigned long | GetActualMemorySize () |
vtkIdType | GetNumberOfPoints () |
float * | GetPoint (vtkIdType id) |
void | SetNumberOfPoints (vtkIdType number) |
void | GetPoints (vtkIdList *ptId, vtkPoints *fp) |
virtual void | ComputeBounds () |
float * | GetBounds () |
void | GetBounds (float bounds[6]) |
virtual void | SetData (vtkDataArray *) |
vtkDataArray * | GetData () |
virtual void | SetDataType (int dataType) |
void | SetDataTypeToBit () |
void | SetDataTypeToChar () |
void | SetDataTypeToUnsignedChar () |
void | SetDataTypeToShort () |
void | SetDataTypeToUnsignedShort () |
void | SetDataTypeToInt () |
void | SetDataTypeToUnsignedInt () |
void | SetDataTypeToLong () |
void | SetDataTypeToUnsignedLong () |
void | SetDataTypeToFloat () |
void | SetDataTypeToDouble () |
virtual void | DeepCopy (vtkPoints *ad) |
virtual void | ShallowCopy (vtkPoints *ad) |
void | GetPoint (vtkIdType id, float x[3]) |
void | GetPoint (vtkIdType id, double x[3]) |
void | SetPoint (vtkIdType id, const float x[3]) |
void | SetPoint (vtkIdType id, const double x[3]) |
void | SetPoint (vtkIdType id, double x, double y, double z) |
void | InsertPoint (vtkIdType id, const float x[3]) |
void | InsertPoint (vtkIdType id, const double x[3]) |
void | InsertPoint (vtkIdType id, double x, double y, double z) |
vtkIdType | InsertNextPoint (const float x[3]) |
vtkIdType | InsertNextPoint (const double x[3]) |
vtkIdType | InsertNextPoint (double x, double y, double z) |
Static Public Methods | |
vtkPoints * | New (int dataType) |
vtkPoints * | New () |
int | IsTypeOf (const char *type) |
vtkPoints * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkPoints (int dataType=VTK_FLOAT) | |
~vtkPoints () | |
Protected Attributes | |
float | Bounds [6] |
vtkTimeStamp | ComputeTime |
vtkDataArray * | Data |
vtkPoints represents 3D points. The data model for vtkPoints is an array of vx-vy-vz triplets accessible by (point or cell) id.
Definition at line 65 of file vtkPoints.h.
|
|
|
|
|
|
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkObject. |
|
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 vtkObject. |
|
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 vtkObject. |
|
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 vtkObject. |
|
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 vtkObject. |
|
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 vtkObject. |
|
Allocate initial memory size. |
|
Return object to instantiated state. |
|
Creates object of same type as this object. |
|
Set/Get the underlying data array. This function must be implemented in a concrete subclass to check for consistency. (The tuple size must match the type of data. For example, 3-tuple data array can be assigned to a vector, normal, or points object, but not a tensor object, which has a tuple dimension of 9. Scalars, on the other hand, can have tuple dimension from 1-4, depending on the type of scalar.) |
|
Set/Get the underlying data array. This function must be implemented in a concrete subclass to check for consistency. (The tuple size must match the type of data. For example, 3-tuple data array can be assigned to a vector, normal, or points object, but not a tensor object, which has a tuple dimension of 9. Scalars, on the other hand, can have tuple dimension from 1-4, depending on the type of scalar.) Definition at line 93 of file vtkPoints.h. |
|
Return the underlying data type. An integer indicating data type is returned as specified in vtkSetGet.h. |
|
Specify the underlying data type of the object. |
|
Specify the underlying data type of the object. Definition at line 103 of file vtkPoints.h. |
|
Specify the underlying data type of the object. Definition at line 104 of file vtkPoints.h. |
|
Specify the underlying data type of the object. Definition at line 105 of file vtkPoints.h. |
|
Specify the underlying data type of the object. Definition at line 106 of file vtkPoints.h. |
|
Specify the underlying data type of the object. Definition at line 107 of file vtkPoints.h. |
|
Specify the underlying data type of the object. Definition at line 108 of file vtkPoints.h. |
|
Specify the underlying data type of the object. Definition at line 109 of file vtkPoints.h. |
|
Specify the underlying data type of the object. Definition at line 110 of file vtkPoints.h. |
|
Specify the underlying data type of the object. Definition at line 111 of file vtkPoints.h. |
|
Specify the underlying data type of the object. Definition at line 112 of file vtkPoints.h. |
|
Specify the underlying data type of the object. Definition at line 113 of file vtkPoints.h. |
|
Return a void pointer. For image pipeline interface and other special pointer manipulation. Definition at line 118 of file vtkPoints.h. |
|
Reclaim any extra memory. Definition at line 121 of file vtkPoints.h. |
|
Make object look empty but do not delete memory. Definition at line 124 of file vtkPoints.h. |
|
Different ways to copy data. Shallow copy does reference count (i.e., assigns pointers and updates reference count); deep copy runs through entire data array assigning values. |
|
Different ways to copy data. Shallow copy does reference count (i.e., assigns pointers and updates reference count); deep copy runs through entire data array assigning values. |
|
Return the memory in kilobytes consumed by this attribute data. Used to support streaming and reading/writing data. The value returned is guaranteed to be greater than or equal to the memory required to actually represent the data represented by this object. The information returned is valid only after the pipeline has been updated. |
|
Return number of points in array. Definition at line 143 of file vtkPoints.h. Referenced by vtkPointSet::GetNumberOfPoints().
|
|
Return a pointer to a float point x[3] for a specific id. Definition at line 146 of file vtkPoints.h. |
|
Copy point components into user provided array v[3] for specified id. Definition at line 150 of file vtkPoints.h. |
|
Copy point components into user provided array v[3] for specified id. Definition at line 151 of file vtkPoints.h. |
|
Insert point into object. No range checking performed (fast!). Make sure you use SetNumberOfPoints() to allocate memory prior to using SetPoint(). Definition at line 158 of file vtkPoints.h. |
|
Insert point into object. No range checking performed (fast!). Make sure you use SetNumberOfPoints() to allocate memory prior to using SetPoint(). Definition at line 159 of file vtkPoints.h. |
|
Insert point into object. No range checking performed (fast!). Make sure you use SetNumberOfPoints() to allocate memory prior to using SetPoint(). Definition at line 218 of file vtkPoints.h. |
|
Insert point into object. Range checking performed and memory allocated as necessary. Definition at line 166 of file vtkPoints.h. |
|
Insert point into object. Range checking performed and memory allocated as necessary. Definition at line 168 of file vtkPoints.h. |
|
Insert point into object. Range checking performed and memory allocated as necessary. Definition at line 227 of file vtkPoints.h. |
|
Insert point into next available slot. Returns id of slot. Definition at line 175 of file vtkPoints.h. |
|
Insert point into next available slot. Returns id of slot. Definition at line 177 of file vtkPoints.h. |
|
Insert point into next available slot. Returns id of slot. Definition at line 237 of file vtkPoints.h. |
|
Specify the number of points for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetPoint() method for fast insertion. Definition at line 212 of file vtkPoints.h. |
|
Given a list of pt ids, return an array of points. |
|
Determine (xmin,xmax, ymin,ymax, zmin,zmax) bounds of points. |
|
Return the bounds of the points. |
|
Return the bounds of the points. |
|
Definition at line 203 of file vtkPoints.h. |
|
Definition at line 204 of file vtkPoints.h. |
|
Definition at line 205 of file vtkPoints.h. |