FreeMat
vtkPoints2D

Section: Visualization Toolkit Common Classes

Usage

vtkPoints2D represents 2D points. The data model for vtkPoints2D is an array of vx-vy doublets accessible by (point or cell) id.

To create an instance of class vtkPoints2D, simply invoke its constructor as follows

  obj = vtkPoints2D

Methods

The class vtkPoints2D has several methods that can be used. They are listed below. Note that the documentation is translated automatically from the VTK sources, and may not be completely intelligible. When in doubt, consult the VTK website. In the methods listed below, obj is an instance of the vtkPoints2D class.

  • string = obj.GetClassName ()
  • int = obj.IsA (string name)
  • vtkPoints2D = obj.NewInstance ()
  • vtkPoints2D = obj.SafeDownCast (vtkObject o)
  • int = obj.Allocate (vtkIdType sz, vtkIdType ext) - Allocate initial memory size.
  • obj.Initialize () - Return object to instantiated state.
  • obj.SetData (vtkDataArray ) - 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.)
  • vtkDataArray = obj.GetData () - Return the underlying data type. An integer indicating data type is returned as specified in vtkSetGet.h.
  • int = obj.GetDataType () - Return the underlying data type. An integer indicating data type is returned as specified in vtkSetGet.h.
  • obj.SetDataType (int dataType) - Specify the underlying data type of the object.
  • obj.SetDataTypeToBit () - Specify the underlying data type of the object.
  • obj.SetDataTypeToChar () - Specify the underlying data type of the object.
  • obj.SetDataTypeToUnsignedChar () - Specify the underlying data type of the object.
  • obj.SetDataTypeToShort () - Specify the underlying data type of the object.
  • obj.SetDataTypeToUnsignedShort () - Specify the underlying data type of the object.
  • obj.SetDataTypeToInt () - Specify the underlying data type of the object.
  • obj.SetDataTypeToUnsignedInt () - Specify the underlying data type of the object.
  • obj.SetDataTypeToLong () - Specify the underlying data type of the object.
  • obj.SetDataTypeToUnsignedLong () - Specify the underlying data type of the object.
  • obj.SetDataTypeToFloat () - Specify the underlying data type of the object.
  • obj.SetDataTypeToDouble () - Return a void pointer. For image pipeline interface and other special pointer manipulation.
  • obj.Squeeze () - Reclaim any extra memory.
  • obj.Reset () - Make object look empty but do not delete memory.
  • obj.DeepCopy (vtkPoints2D ad) - 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.
  • obj.ShallowCopy (vtkPoints2D ad) - 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.
  • long = obj.GetActualMemorySize () - 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.
  • vtkIdType = obj.GetNumberOfPoints () - Return a pointer to a double point x[2] 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.
  • obj.GetPoint (vtkIdType id, double x[2]) - Insert point into object. No range checking performed (fast!). Make sure you use SetNumberOfPoints() to allocate memory prior to using SetPoint().
  • obj.SetPoint (vtkIdType id, float x[2]) - Insert point into object. No range checking performed (fast!). Make sure you use SetNumberOfPoints() to allocate memory prior to using SetPoint().
  • obj.SetPoint (vtkIdType id, double x[2]) - Insert point into object. No range checking performed (fast!). Make sure you use SetNumberOfPoints() to allocate memory prior to using SetPoint().
  • obj.SetPoint (vtkIdType id, double x, double y) - Insert point into object. No range checking performed (fast!). Make sure you use SetNumberOfPoints() to allocate memory prior to using SetPoint().
  • obj.InsertPoint (vtkIdType id, float x[2]) - Insert point into object. Range checking performed and memory allocated as necessary.
  • obj.InsertPoint (vtkIdType id, double x[2]) - Insert point into object. Range checking performed and memory allocated as necessary.
  • obj.InsertPoint (vtkIdType id, double x, double y) - Insert point into object. Range checking performed and memory allocated as necessary.
  • vtkIdType = obj.InsertNextPoint (float x[2]) - Insert point into next available slot. Returns id of slot.
  • vtkIdType = obj.InsertNextPoint (double x[2]) - Insert point into next available slot. Returns id of slot.
  • vtkIdType = obj.InsertNextPoint (double x, double y) - Insert point into next available slot. Returns id of slot.
  • obj.SetNumberOfPoints (vtkIdType number) - 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.
  • obj.GetPoints (vtkIdList ptId, vtkPoints2D fp) - Given a list of pt ids, return an array of points.
  • obj.ComputeBounds () - Determine (xmin,xmax, ymin,ymax) bounds of points.
  • obj.GetBounds (double bounds[4]) - Return the bounds of the points.