VTK
9.1.0
|
represent and manipulate 3D points More...
#include <vtkPoints.h>
Public Types | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual vtkTypeBool | IsA (const char *type) |
Return 1 if this class is the same type of (or a subclass of) the named class. | |
vtkPoints * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. | |
virtual vtkTypeBool | Allocate (vtkIdType sz, vtkIdType ext=1000) |
Allocate initial memory size. | |
virtual void | Initialize () |
Return object to instantiated state. | |
virtual void | SetData (vtkDataArray *) |
Set/Get the underlying data array. | |
vtkDataArray * | GetData () |
virtual int | GetDataType () const |
Return the underlying data type. | |
virtual void | SetDataType (int dataType) |
Specify the underlying data type of the object. | |
void | SetDataTypeToBit () |
void | SetDataTypeToChar () |
void | SetDataTypeToUnsignedChar () |
void | SetDataTypeToShort () |
void | SetDataTypeToUnsignedShort () |
void | SetDataTypeToInt () |
void | SetDataTypeToUnsignedInt () |
void | SetDataTypeToLong () |
void | SetDataTypeToUnsignedLong () |
void | SetDataTypeToFloat () |
void | SetDataTypeToDouble () |
void * | GetVoidPointer (const int id) |
Return a void pointer. | |
virtual void | Squeeze () |
Reclaim any extra memory. | |
virtual void | Reset () |
Make object look empty but do not delete memory. | |
unsigned long | GetActualMemorySize () |
Return the memory in kibibytes (1024 bytes) consumed by this attribute data. | |
vtkIdType | GetNumberOfPoints () const |
Return number of points in array. | |
double * | GetPoint (vtkIdType id) |
Return a pointer to a double point x[3] for a specific id. | |
void | GetPoint (vtkIdType id, double x[3]) |
Copy point components into user provided array v[3] for specified id. | |
void | SetPoint (vtkIdType id, const float x[3]) |
Insert point into object. | |
void | SetPoint (vtkIdType id, const double x[3]) |
void | SetPoint (vtkIdType id, double x, double y, double z) |
void | InsertPoints (vtkIdList *dstIds, vtkIdList *srcIds, vtkPoints *source) |
Copy the points indexed in srcIds from the source array to the tuple locations indexed by dstIds in this array. | |
void | InsertPoints (vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkPoints *source) |
Copy n consecutive points starting at srcStart from the source array to this array, starting at the dstStart location. | |
vtkIdType | InsertNextPoint (const float x[3]) |
Insert point into next available slot. | |
vtkIdType | InsertNextPoint (const double x[3]) |
vtkIdType | InsertNextPoint (double x, double y, double z) |
void | SetNumberOfPoints (vtkIdType numPoints) |
Specify the number of points for this object to hold. | |
vtkTypeBool | Resize (vtkIdType numPoints) |
Resize the internal array while conserving the data. | |
void | GetPoints (vtkIdList *ptId, vtkPoints *outPoints) |
Given a list of pt ids, return an array of points. | |
virtual void | ComputeBounds () |
Determine (xmin,xmax, ymin,ymax, zmin,zmax) bounds of points. | |
double * | GetBounds () |
Return the bounds of the points. | |
void | GetBounds (double bounds[6]) |
Return the bounds of the points. | |
vtkMTimeType | GetMTime () override |
The modified time of the points. | |
void | Modified () override |
Update the modification time for this object and its Data. | |
virtual void | DeepCopy (vtkPoints *ad) |
Different ways to copy data. | |
virtual void | ShallowCopy (vtkPoints *ad) |
Different ways to copy data. | |
void | InsertPoint (vtkIdType id, const float x[3]) |
Insert point into object. | |
void | InsertPoint (vtkIdType id, const double x[3]) |
Insert point into object. | |
void | InsertPoint (vtkIdType id, double x, double y, double z) |
Insert point into object. | |
Public Member Functions inherited from vtkObject | |
vtkBaseTypeMacro (vtkObject, vtkObjectBase) | |
virtual void | DebugOn () |
Turn debugging output on. | |
virtual void | DebugOff () |
Turn debugging output off. | |
bool | GetDebug () |
Get the value of the debug flag. | |
void | SetDebug (bool debugFlag) |
Set the value of the debug flag. | |
virtual void | Modified () |
Update the modification time for this object. | |
virtual vtkMTimeType | GetMTime () |
Return this object's modified time. | |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. | |
void | RemoveObserver (unsigned long tag) |
void | RemoveObservers (unsigned long event) |
void | RemoveObservers (const char *event) |
void | RemoveAllObservers () |
vtkTypeBool | HasObserver (unsigned long event) |
vtkTypeBool | HasObserver (const char *event) |
int | InvokeEvent (unsigned long event) |
int | InvokeEvent (const char *event) |
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkCommand * | GetCommand (unsigned long tag) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObserver (vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObservers (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObservers (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkTypeBool | HasObserver (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkTypeBool | HasObserver (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Allow user to set the AbortFlagOn() with the return value of the callback method. | |
int | InvokeEvent (unsigned long event, void *callData) |
This method invokes an event and return whether the event was aborted or not. | |
int | InvokeEvent (const char *event, void *callData) |
This method invokes an event and return whether the event was aborted or not. | |
Public Member Functions inherited from vtkObjectBase | |
const char * | GetClassName () const |
Return the class name as a string. | |
virtual vtkTypeBool | IsA (const char *name) |
Return 1 if this class is the same type of (or a subclass of) the named class. | |
virtual vtkIdType | GetNumberOfGenerationsFromBase (const char *name) |
Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). | |
virtual void | Delete () |
Delete a VTK object. | |
virtual void | FastDelete () |
Delete a reference to this object. | |
void | InitializeObjectBase () |
void | Print (ostream &os) |
Print an object to an ostream. | |
virtual void | Register (vtkObjectBase *o) |
Increase the reference count (mark as used by another object). | |
virtual void | UnRegister (vtkObjectBase *o) |
Decrease the reference count (release by another object). | |
int | GetReferenceCount () |
Return the current reference count of this object. | |
void | SetReferenceCount (int) |
Sets the reference count. | |
bool | GetIsInMemkind () const |
A local state flag that remembers whether this object lives in the normal or extended memory space. | |
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. | |
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. | |
Static Public Member Functions | |
static vtkPoints * | New (int dataType) |
static vtkPoints * | New () |
static vtkTypeBool | IsTypeOf (const char *type) |
static vtkPoints * | SafeDownCast (vtkObjectBase *o) |
Static Public Member Functions inherited from vtkObject | |
static vtkObject * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. | |
static void | BreakOnError () |
This method is called when vtkErrorMacro executes. | |
static void | SetGlobalWarningDisplay (int val) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static void | GlobalWarningDisplayOn () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static void | GlobalWarningDisplayOff () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static int | GetGlobalWarningDisplay () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
Static Public Member Functions inherited from vtkObjectBase | |
static vtkTypeBool | IsTypeOf (const char *name) |
Return 1 if this class type is the same type of (or a subclass of) the named class. | |
static vtkIdType | GetNumberOfGenerationsFromBaseType (const char *name) |
Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). | |
static vtkObjectBase * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. | |
static void | SetMemkindDirectory (const char *directoryname) |
The name of a directory, ideally mounted -o dax, to memory map an extended memory space within. | |
static bool | GetUsingMemkind () |
A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space. | |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkPoints (int dataType=VTK_FLOAT) | |
~vtkPoints () override | |
Protected Member Functions inherited from vtkObject | |
vtkObject () | |
~vtkObject () override | |
void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr) |
These methods allow a command to exclusively grab all events. | |
void | InternalReleaseFocus () |
These methods allow a command to exclusively grab all events. | |
Protected Member Functions inherited from vtkObjectBase | |
vtkObjectBase () | |
virtual | ~vtkObjectBase () |
virtual void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | ReportReferences (vtkGarbageCollector *) |
vtkObjectBase (const vtkObjectBase &) | |
void | operator= (const vtkObjectBase &) |
Protected Attributes | |
double | Bounds [6] |
vtkTimeStamp | ComputeTime |
vtkDataArray * | Data |
Protected Attributes inherited from vtkObject | |
bool | Debug |
vtkTimeStamp | MTime |
vtkSubjectHelper * | SubjectHelper |
Protected Attributes inherited from vtkObjectBase | |
std::atomic< int32_t > | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
Additional Inherited Members | |
Static Protected Member Functions inherited from vtkObjectBase | |
static vtkMallocingFunction | GetCurrentMallocFunction () |
static vtkReallocingFunction | GetCurrentReallocFunction () |
static vtkFreeingFunction | GetCurrentFreeFunction () |
static vtkFreeingFunction | GetAlternateFreeFunction () |
represent and manipulate 3D points
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 142 of file vtkPoints.h.
typedef vtkObject vtkPoints::Superclass |
Definition at line 149 of file vtkPoints.h.
|
protected |
|
overrideprotected |
|
static |
|
static |
|
static |
|
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 vtkObjectBase.
Reimplemented in vtkPointsProjectedHull.
|
static |
|
protectedvirtual |
Reimplemented in vtkPointsProjectedHull.
vtkPoints * vtkPoints::NewInstance | ( | ) | const |
|
overridevirtual |
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.
Reimplemented in vtkPointsProjectedHull.
|
virtual |
Allocate initial memory size.
ext is no longer used.
|
virtual |
Return object to instantiated state.
Reimplemented in vtkPointsProjectedHull.
|
virtual |
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.)
|
inline |
Definition at line 171 of file vtkPoints.h.
|
virtual |
Return the underlying data type.
An integer indicating data type is returned as specified in vtkSetGet.h.
|
virtual |
Specify the underlying data type of the object.
Default is VTK_FLOAT.
|
inline |
Definition at line 184 of file vtkPoints.h.
|
inline |
Definition at line 185 of file vtkPoints.h.
|
inline |
Definition at line 186 of file vtkPoints.h.
|
inline |
Definition at line 187 of file vtkPoints.h.
|
inline |
Definition at line 188 of file vtkPoints.h.
|
inline |
Definition at line 189 of file vtkPoints.h.
|
inline |
Definition at line 190 of file vtkPoints.h.
|
inline |
Definition at line 191 of file vtkPoints.h.
|
inline |
Definition at line 192 of file vtkPoints.h.
|
inline |
Definition at line 193 of file vtkPoints.h.
|
inline |
Definition at line 194 of file vtkPoints.h.
|
inline |
Return a void pointer.
For image pipeline interface and other special pointer manipulation.
Definition at line 200 of file vtkPoints.h.
|
inlinevirtual |
Reclaim any extra memory.
Definition at line 205 of file vtkPoints.h.
|
inlinevirtual |
Make object look empty but do not delete memory.
Reimplemented in vtkPointsProjectedHull.
Definition at line 376 of file vtkPoints.h.
|
virtual |
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.
|
virtual |
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.
unsigned long vtkPoints::GetActualMemorySize | ( | ) |
Return the memory in kibibytes (1024 bytes) 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.
|
inline |
Return number of points in array.
Definition at line 235 of file vtkPoints.h.
|
inline |
Return a pointer to a double point x[3] for a specific id.
WARNING: Just don't use this error-prone method, the returned pointer and its values are only valid as long as another method invocation is not performed. Prefer GetPoint() with the return value in argument.
Definition at line 243 of file vtkPoints.h.
|
inline |
Copy point components into user provided array v[3] for specified id.
Definition at line 252 of file vtkPoints.h.
|
inline |
Insert point into object.
No range checking performed (fast!). Make sure you use SetNumberOfPoints() to allocate memory prior to using SetPoint(). You should call Modified() finally after changing points using this method as it will not do it itself.
Definition at line 264 of file vtkPoints.h.
|
inline |
Definition at line 268 of file vtkPoints.h.
|
inline |
Definition at line 396 of file vtkPoints.h.
|
inline |
Insert point into object.
Range checking performed and memory allocated as necessary.
Definition at line 280 of file vtkPoints.h.
|
inline |
Insert point into object.
Range checking performed and memory allocated as necessary.
Definition at line 284 of file vtkPoints.h.
|
inline |
Insert point into object.
Range checking performed and memory allocated as necessary.
Definition at line 402 of file vtkPoints.h.
Copy the points indexed in srcIds from the source array to the tuple locations indexed by dstIds in this array.
Note that memory allocation is performed as necessary to hold the data.
Definition at line 296 of file vtkPoints.h.
|
inline |
Copy n consecutive points starting at srcStart from the source array to this array, starting at the dstStart location.
Note that memory allocation is performed as necessary to hold the data.
Definition at line 306 of file vtkPoints.h.
|
inline |
Insert point into next available slot.
Returns id of slot.
Definition at line 314 of file vtkPoints.h.
|
inline |
Definition at line 315 of file vtkPoints.h.
|
inline |
Definition at line 408 of file vtkPoints.h.
|
inline |
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 382 of file vtkPoints.h.
|
inline |
Resize the internal array while conserving the data.
Returns 1 if resizing succeeded and 0 otherwise.
Definition at line 389 of file vtkPoints.h.
Given a list of pt ids, return an array of points.
|
virtual |
Determine (xmin,xmax, ymin,ymax, zmin,zmax) bounds of points.
double * vtkPoints::GetBounds | ( | ) |
Return the bounds of the points.
void vtkPoints::GetBounds | ( | double | bounds[6] | ) |
Return the bounds of the points.
|
overridevirtual |
The modified time of the points.
Reimplemented from vtkObject.
|
overridevirtual |
Update the modification time for this object and its Data.
As this object acts as a shell around a DataArray and forwards Set methods it needs to forward Modified as well.
Reimplemented from vtkObject.
|
protected |
Definition at line 367 of file vtkPoints.h.
|
protected |
Definition at line 368 of file vtkPoints.h.
|
protected |
Definition at line 369 of file vtkPoints.h.