ActiViz .NET
5.8.0
|
vtkCell - abstract class to specify cell behavior More...
Public Member Functions | |
vtkCell (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
virtual int | CellBoundary (int subId, IntPtr pcoords, vtkIdList pts) |
Given parametric coordinates of a point, return the closest cell boundary, and whether the point is inside or outside of the cell. The cell boundary is defined by a list of points (pts) that specify a face (3D cell), edge (2D cell), or vertex (1D cell). If the return value of the method is != 0, then the point is inside the cell. | |
virtual void | Clip (double value, vtkDataArray cellScalars, vtkIncrementalPointLocator locator, vtkCellArray connectivity, vtkPointData inPd, vtkPointData outPd, vtkCellData inCd, int cellId, vtkCellData outCd, int insideOut) |
Cut (or clip) the cell based on the input cellScalars and the specified value. The output of the clip operation will be one or more cells of the same topological dimension as the original cell. The flag insideOut controls what part of the cell is considered inside - normally cell points whose scalar value is greater than "value" are considered inside. If insideOut is on, this is reversed. Also, if the output cell data is non-NULL, the cell data from the clipped cell is passed to the generated contouring primitives. (Note: the CopyAllocate() method must be invoked on both the output cell and point data. The cellId refers to the cell from which the cell data is copied.) | |
virtual void | Contour (double value, vtkDataArray cellScalars, vtkIncrementalPointLocator locator, vtkCellArray verts, vtkCellArray lines, vtkCellArray polys, vtkPointData inPd, vtkPointData outPd, vtkCellData inCd, int cellId, vtkCellData outCd) |
Generate contouring primitives. The scalar list cellScalars are scalar values at each cell point. The point locator is essentially a points list that merges points as they are inserted (i.e., prevents duplicates). Contouring primitives can be vertices, lines, or polygons. It is possible to interpolate point data along the edge by providing input and output point data - if outPd is NULL, then no interpolation is performed. Also, if the output cell data is non-NULL, the cell data from the contoured cell is passed to the generated contouring primitives. (Note: the CopyAllocate() method must be invoked on both the output cell and point data. The cellId refers to the cell from which the cell data is copied.) | |
virtual void | DeepCopy (vtkCell c) |
Copy this cell by completely copying internal data structures. This is slower but safer than ShallowCopy(). | |
virtual void | Derivatives (int subId, IntPtr pcoords, IntPtr values, int dim, IntPtr derivs) |
Compute derivatives given cell subId and parametric coordinates. The values array is a series of data value(s) at the cell points. There is a one-to-one correspondence between cell point and data value(s). Dim is the number of data values per cell point. Derivs are derivatives in the x-y-z coordinate directions for each data value. Thus, if computing derivatives for a scalar function in a hexahedron, dim=1, 8 values are supplied, and 3 deriv values are returned (i.e., derivatives in x-y-z directions). On the other hand, if computing derivatives of velocity (vx,vy,vz) dim=3, 24 values are supplied ((vx,vy,vz)1, (vx,vy,vz)2, ....()8), and 9 deriv values are returned ((d(vx)/dx),(d(vx)/dy),(d(vx)/dz), (d(vy)/dx),(d(vy)/dy), (d(vy)/dz), (d(vz)/dx),(d(vz)/dy),(d(vz)/dz)). | |
virtual void | EvaluateLocation (ref int subId, IntPtr pcoords, IntPtr x, IntPtr weights) |
Determine global coordinate (x[3]) from subId and parametric coordinates. Also returns interpolation weights. (The number of weights is equal to the number of points in the cell.) | |
virtual int | EvaluatePosition (IntPtr x, IntPtr closestPoint, ref int subId, IntPtr pcoords, ref double dist2, IntPtr weights) |
Given a point x[3] return inside(=1), outside(=0) cell, or (-1) computational problem encountered; evaluate parametric coordinates, sub-cell id (!=0 only if cell is composite), distance squared of point x[3] to cell (in particular, the sub-cell indicated), closest point on cell to x[3] (unless closestPoint is null, in which case, the closest point and dist2 are not found), and interpolation weights in cell. (The number of weights is equal to the number of points defining the cell). Note: on rare occasions a -1 is returned from the method. This means that numerical error has occurred and all data returned from this method should be ignored. Also, inside/outside is determine parametrically. That is, a point is inside if it satisfies parametric limits. This can cause problems for cells of topological dimension 2 or less, since a point in 3D can project onto the cell within parametric limits but be "far" from the cell. Thus the value dist2 may be checked to determine true in/out. | |
void | GetBounds (IntPtr bounds) |
Compute cell bounding box (xmin,xmax,ymin,ymax,zmin,zmax). Copy result into user provided array. | |
double[] | GetBounds () |
Compute cell bounding box (xmin,xmax,ymin,ymax,zmin,zmax). Return pointer to array of six double values. | |
virtual int | GetCellDimension () |
Return the topological dimensional of the cell (0,1,2, or 3). | |
virtual int | GetCellType () |
Return the type of cell. | |
virtual vtkCell | GetEdge (int edgeId) |
Return the edge cell from the edgeId of the cell. | |
virtual vtkCell | GetFace (int faceId) |
Return the face cell from the faceId of the cell. | |
virtual IntPtr | GetFaces () |
Determine whether the cell requires explicit face representation, and methods for setting and getting the faces (see vtkPolyhedron for example usage of these methods). | |
double | GetLength2 () |
Compute Length squared of cell (i.e., bounding box diagonal squared). | |
virtual int | GetNumberOfEdges () |
Return the number of edges in the cell. | |
virtual int | GetNumberOfFaces () |
Return the number of faces in the cell. | |
int | GetNumberOfPoints () |
Return the number of points in the cell. | |
virtual int | GetParametricCenter (IntPtr pcoords) |
Return center of the cell in parametric coordinates. Note that the parametric center is not always located at (0.5,0.5,0.5). The return value is the subId that the center is in (if a composite cell). If you want the center in x-y-z space, invoke the EvaluateLocation() method. | |
virtual IntPtr | GetParametricCoords () |
Return a contiguous array of parametric coordinates of the points defining this cell. In other words, (px,py,pz, px,py,pz, etc..) The coordinates are ordered consistent with the definition of the point ordering for the cell. This method returns a non-NULL pointer when the cell is a primary type (i.e., IsPrimaryCell() is true). Note that 3D parametric coordinates are returned no matter what the topological dimension of the cell. | |
virtual double | GetParametricDistance (IntPtr pcoords) |
Return the distance of the parametric coordinate provided to the cell. If inside the cell, a distance of zero is returned. This is used during picking to get the correct cell picked. (The tolerance will occasionally allow cells to be picked who are not really intersected "inside" the cell.) | |
int | GetPointId (int ptId) |
For cell point i, return the actual point id. | |
vtkIdList | GetPointIds () |
Return the list of point ids defining the cell. | |
vtkPoints | GetPoints () |
Get the point coordinates for the cell. | |
void | Initialize (int npts, IntPtr pts, vtkPoints p) |
Initialize cell from outside with point ids and point coordinates specified. | |
virtual void | Initialize () |
Some cells require initialization prior to access. For example, they may have to triangulate themselves or set up internal data structures. | |
virtual void | InterpolateDerivs (IntPtr pcoords, IntPtr derivs) |
Compute the interpolation functions/derivatives (aka shape functions/derivatives) No-ops at this level. Typically overridden in subclasses. | |
virtual void | InterpolateFunctions (IntPtr pcoords, IntPtr weights) |
Compute the interpolation functions/derivatives (aka shape functions/derivatives) No-ops at this level. Typically overridden in subclasses. | |
virtual int | IntersectWithLine (IntPtr p1, IntPtr p2, double tol, ref double t, IntPtr x, IntPtr pcoords, ref int subId) |
Intersect with a ray. Return parametric coordinates (both line and cell) and global intersection coordinates, given ray definition and tolerance. The method returns non-zero value if intersection occurs. | |
override int | IsA (string type) |
Undocumented Block | |
virtual int | IsExplicitCell () |
Explicit cells require additional representational information beyond the usual cell type and connectivity list information. Most cells in VTK are implicit cells. | |
virtual int | IsLinear () |
Non-linear cells require special treatment beyond the usual cell type and connectivity list information. Most cells in VTK are implicit cells. | |
virtual int | IsPrimaryCell () |
Return whether this cell type has a fixed topology or whether the topology varies depending on the data (e.g., vtkConvexPointSet). This compares to composite cells that are typically composed of primary cells (e.g., a triangle strip composite cell is made up of triangle primary cells). | |
new vtkCell | NewInstance () |
Undocumented Block | |
virtual int | RequiresExplicitFaceRepresentation () |
Determine whether the cell requires explicit face representation, and methods for setting and getting the faces (see vtkPolyhedron for example usage of these methods). | |
virtual int | RequiresInitialization () |
Some cells require initialization prior to access. For example, they may have to triangulate themselves or set up internal data structures. | |
virtual void | SetFaces (IntPtr arg0) |
Determine whether the cell requires explicit face representation, and methods for setting and getting the faces (see vtkPolyhedron for example usage of these methods). | |
virtual void | ShallowCopy (vtkCell c) |
Copy this cell by reference counting the internal data structures. This is safe if you want a "read-only" copy. If you modify the cell you might wish to use DeepCopy(). | |
virtual int | Triangulate (int index, vtkIdList ptIds, vtkPoints pts) |
Generate simplices of proper dimension. If cell is 3D, tetrahedron are generated; if 2D triangles; if 1D lines; if 0D points. The form of the output is a sequence of points, each n+1 points (where n is topological cell dimension) defining a simplex. The index is a parameter that controls which triangulation to use (if more than one is possible). If numerical degeneracy encountered, 0 is returned, otherwise 1 is returned. This method does not insert new points: all the points that define the simplices are the points that define the cell. | |
![]() | |
vtkObject (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkObject () | |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. | |
uint | AddObserver (uint arg0, vtkCommand arg1, float priority) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
uint | AddObserver (string arg0, vtkCommand arg1, float priority) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
virtual void | DebugOff () |
Turn debugging output off. | |
virtual void | DebugOn () |
Turn debugging output on. | |
vtkCommand | GetCommand (uint tag) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
byte | GetDebug () |
Get the value of the debug flag. | |
virtual uint | GetMTime () |
Return this object's modified time. | |
int | HasObserver (uint arg0, vtkCommand arg1) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
int | HasObserver (string arg0, vtkCommand arg1) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
int | HasObserver (uint arg0) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
int | HasObserver (string arg0) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
int | InvokeEvent (uint arg0, IntPtr callData) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
int | InvokeEvent (string arg0, IntPtr callData) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
int | InvokeEvent (uint arg0) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
int | InvokeEvent (string arg0) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
virtual void | Modified () |
Update the modification time for this object. Many filters rely on the modification time to determine if they need to recompute their data. The modification time is a unique monotonically increasing unsigned long integer. | |
void | RemoveAllObservers () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
void | RemoveObserver (vtkCommand arg0) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
void | RemoveObserver (uint tag) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
void | RemoveObservers (uint arg0, vtkCommand arg1) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
void | RemoveObservers (string arg0, vtkCommand arg1) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
void | RemoveObservers (uint arg0) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
void | RemoveObservers (string arg0) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
void | SetDebug (byte debugFlag) |
Set the value of the debug flag. A non-zero value turns debugging on. | |
override string | ToString () |
Returns the result of calling vtkObject::Print as a C# string. | |
delegate void | vtkObjectEventHandler (vtkObject sender, vtkObjectEventArgs e) |
Generic signature for all vtkObject events. | |
void | RemoveAllHandlersForAllEvents () |
Call RemoveAllHandlers on each non-null vtkObjectEventRelay. TODO: This method needs to get called by the generated Dispose. Make that happen... | |
![]() | |
vtkObjectBase (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkObjectBase () | |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. | |
virtual void | Register (vtkObjectBase o) |
Increase the reference count (mark as used by another object). | |
virtual void | FastDelete () |
Delete a reference to this object. This version will not invoke garbage collection and can potentially leak the object if it is part of a reference loop. Use this method only when it is known that the object has another reference and would not be collected if a full garbage collection check were done. | |
string | GetClassName () |
Return the class name as a string. This method is defined in all subclasses of vtkObjectBase with the vtkTypeMacro found in vtkSetGet.h. | |
int | GetReferenceCount () |
Return the current reference count of this object. | |
void | SetReferenceCount (int arg0) |
Sets the reference count. (This is very dangerous, use with care.) |
Static Public Member Functions | |
static new int | IsTypeOf (string type) |
Undocumented Block | |
static new vtkCell | SafeDownCast (vtkObjectBase o) |
Undocumented Block | |
![]() | |
static new 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. It allows the debugger to break on error. | |
static int | GetGlobalWarningDisplay () |
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 void | GlobalWarningDisplayOn () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static void | SetGlobalWarningDisplay (int val) |
This is a global flag that controls whether any debug, warning or error messages are displayed. |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkCell" |
Automatically generated type registration mechanics. | |
![]() | |
new const string | MRFullTypeName = "Kitware.VTK.vtkObject" |
Automatically generated type registration mechanics. | |
![]() | |
new const string | MRFullTypeName = "Kitware.VTK.vtkObjectBase" |
Automatically generated type registration mechanics. | |
![]() | |
const string | vtkChartsEL_dll = "libKitware.VTK.vtkCharts.Unmanaged.so" |
Export layer functions for 'vtkCharts' are exported from the DLL named by the value of this variable. | |
const string | vtkCommonEL_dll = "libKitware.VTK.vtkCommon.Unmanaged.so" |
Export layer functions for 'vtkCommon' are exported from the DLL named by the value of this variable. | |
const string | vtkFilteringEL_dll = "libKitware.VTK.vtkFiltering.Unmanaged.so" |
Export layer functions for 'vtkFiltering' are exported from the DLL named by the value of this variable. | |
const string | vtkGenericFilteringEL_dll = "libKitware.VTK.vtkGenericFiltering.Unmanaged.so" |
Export layer functions for 'vtkGenericFiltering' are exported from the DLL named by the value of this variable. | |
const string | vtkGeovisEL_dll = "libKitware.VTK.vtkGeovis.Unmanaged.so" |
Export layer functions for 'vtkGeovis' are exported from the DLL named by the value of this variable. | |
const string | vtkGraphicsEL_dll = "libKitware.VTK.vtkGraphics.Unmanaged.so" |
Export layer functions for 'vtkGraphics' are exported from the DLL named by the value of this variable. | |
const string | vtkHybridEL_dll = "libKitware.VTK.vtkHybrid.Unmanaged.so" |
Export layer functions for 'vtkHybrid' are exported from the DLL named by the value of this variable. | |
const string | vtkIOEL_dll = "libKitware.VTK.vtkIO.Unmanaged.so" |
Export layer functions for 'vtkIO' are exported from the DLL named by the value of this variable. | |
const string | vtkImagingEL_dll = "libKitware.VTK.vtkImaging.Unmanaged.so" |
Export layer functions for 'vtkImaging' are exported from the DLL named by the value of this variable. | |
const string | vtkInfovisEL_dll = "libKitware.VTK.vtkInfovis.Unmanaged.so" |
Export layer functions for 'vtkInfovis' are exported from the DLL named by the value of this variable. | |
const string | vtkParallelEL_dll = "libKitware.VTK.vtkParallel.Unmanaged.so" |
Export layer functions for 'vtkParallel' are exported from the DLL named by the value of this variable. | |
const string | vtkRenderingEL_dll = "libKitware.VTK.vtkRendering.Unmanaged.so" |
Export layer functions for 'vtkRendering' are exported from the DLL named by the value of this variable. | |
const string | vtkViewsEL_dll = "libKitware.VTK.vtkViews.Unmanaged.so" |
Export layer functions for 'vtkViews' are exported from the DLL named by the value of this variable. | |
const string | vtkVolumeRenderingEL_dll = "libKitware.VTK.vtkVolumeRendering.Unmanaged.so" |
Export layer functions for 'vtkVolumeRendering' are exported from the DLL named by the value of this variable. | |
const string | vtkWidgetsEL_dll = "libKitware.VTK.vtkWidgets.Unmanaged.so" |
Export layer functions for 'vtkWidgets' are exported from the DLL named by the value of this variable. |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "7vtkCell" |
Automatically generated type registration mechanics. | |
![]() | |
static new readonly string | MRClassNameKey = "9vtkObject" |
Automatically generated type registration mechanics. | |
![]() | |
static new readonly string | MRClassNameKey = "13vtkObjectBase" |
Automatically generated type registration mechanics. |
Protected Member Functions | |
override void | Dispose (bool disposing) |
Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly. |
Static Private Member Functions | |
static | vtkCell () |
Automatically generated type registration mechanics. |
Additional Inherited Members | |
![]() | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | AbortCheckEvt |
The AbortCheckEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.AbortCheckEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | AnimationCueTickEvt |
The AnimationCueTickEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.AnimationCueTickEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | AnyEvt |
The AnyEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.AnyEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | CharEvt |
The CharEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.CharEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ConfigureEvt |
The ConfigureEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ConfigureEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ConnectionClosedEvt |
The ConnectionClosedEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ConnectionClosedEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ConnectionCreatedEvt |
The ConnectionCreatedEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ConnectionCreatedEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | CreateTimerEvt |
The CreateTimerEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.CreateTimerEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | CursorChangedEvt |
The CursorChangedEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.CursorChangedEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | DeleteEvt |
The DeleteEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.DeleteEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | DestroyTimerEvt |
The DestroyTimerEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.DestroyTimerEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | DisableEvt |
The DisableEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.DisableEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | DomainModifiedEvt |
The DomainModifiedEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.DomainModifiedEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | EnableEvt |
The EnableEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.EnableEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | EndAnimationCueEvt |
The EndAnimationCueEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.EndAnimationCueEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | EndEvt |
The EndEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.EndEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | EndInteractionEvt |
The EndInteractionEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.EndInteractionEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | EndPickEvt |
The EndPickEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.EndPickEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | EndWindowLevelEvt |
The EndWindowLevelEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.EndWindowLevelEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | EnterEvt |
The EnterEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.EnterEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ErrorEvt |
The ErrorEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ErrorEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ExecuteInformationEvt |
The ExecuteInformationEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ExecuteInformationEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ExitEvt |
The ExitEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ExitEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ExposeEvt |
The ExposeEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ExposeEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | InteractionEvt |
The InteractionEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.InteractionEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | KeyPressEvt |
The KeyPressEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.KeyPressEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | KeyReleaseEvt |
The KeyReleaseEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.KeyReleaseEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | LeaveEvt |
The LeaveEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.LeaveEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | LeftButtonPressEvt |
The LeftButtonPressEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.LeftButtonPressEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | LeftButtonReleaseEvt |
The LeftButtonReleaseEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.LeftButtonReleaseEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | MiddleButtonPressEvt |
The MiddleButtonPressEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.MiddleButtonPressEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | MiddleButtonReleaseEvt |
The MiddleButtonReleaseEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.MiddleButtonReleaseEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ModifiedEvt |
The ModifiedEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ModifiedEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | MouseMoveEvt |
The MouseMoveEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.MouseMoveEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | MouseWheelBackwardEvt |
The MouseWheelBackwardEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.MouseWheelBackwardEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | MouseWheelForwardEvt |
The MouseWheelForwardEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.MouseWheelForwardEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | PickEvt |
The PickEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.PickEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | PlacePointEvt |
The PlacePointEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.PlacePointEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | PlaceWidgetEvt |
The PlaceWidgetEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.PlaceWidgetEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ProgressEvt |
The ProgressEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ProgressEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | PropertyModifiedEvt |
The PropertyModifiedEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.PropertyModifiedEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | RegisterEvt |
The RegisterEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.RegisterEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | RenderEvt |
The RenderEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.RenderEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | RenderWindowMessageEvt |
The RenderWindowMessageEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.RenderWindowMessageEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ResetCameraClippingRangeEvt |
The ResetCameraClippingRangeEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ResetCameraClippingRangeEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ResetCameraEvt |
The ResetCameraEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ResetCameraEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | ResetWindowLevelEvt |
The ResetWindowLevelEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.ResetWindowLevelEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | RightButtonPressEvt |
The RightButtonPressEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.RightButtonPressEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | RightButtonReleaseEvt |
The RightButtonReleaseEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.RightButtonReleaseEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | SelectionChangedEvt |
The SelectionChangedEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.SelectionChangedEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | SetOutputEvt |
The SetOutputEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.SetOutputEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | StartAnimationCueEvt |
The StartAnimationCueEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.StartAnimationCueEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | StartEvt |
The StartEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.StartEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | StartInteractionEvt |
The StartInteractionEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.StartInteractionEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | StartPickEvt |
The StartPickEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.StartPickEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | StartWindowLevelEvt |
The StartWindowLevelEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.StartWindowLevelEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | TimerEvt |
The TimerEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.TimerEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | UnRegisterEvt |
The UnRegisterEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.UnRegisterEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | UpdateEvt |
The UpdateEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.UpdateEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | UpdateInformationEvt |
The UpdateInformationEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.UpdateInformationEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | UpdatePropertyEvt |
The UpdatePropertyEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.UpdatePropertyEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | VolumeMapperComputeGradientsEndEvt |
The VolumeMapperComputeGradientsEndEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.VolumeMapperComputeGradientsEndEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | VolumeMapperComputeGradientsProgressEvt |
The VolumeMapperComputeGradientsProgressEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.VolumeMapperComputeGradientsProgressEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | VolumeMapperComputeGradientsStartEvt |
The VolumeMapperComputeGradientsStartEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.VolumeMapperComputeGradientsStartEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | VolumeMapperRenderEndEvt |
The VolumeMapperRenderEndEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.VolumeMapperRenderEndEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | VolumeMapperRenderProgressEvt |
The VolumeMapperRenderProgressEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.VolumeMapperRenderProgressEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | VolumeMapperRenderStartEvt |
The VolumeMapperRenderStartEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.VolumeMapperRenderStartEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | WarningEvt |
The WarningEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.WarningEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | WidgetActivateEvt |
The WidgetActivateEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.WidgetActivateEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | WidgetModifiedEvt |
The WidgetModifiedEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.WidgetModifiedEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | WidgetValueChangedEvt |
The WidgetValueChangedEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.WidgetValueChangedEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | WindowLevelEvt |
The WindowLevelEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.WindowLevelEvent as the eventId parameter. | |
Kitware.VTK.vtkObject.vtkObjectEventHandler | WrongTagEvt |
The WrongTagEvt event is invoked when the sender's InvokeEvent method is called with vtkCommand.EventIds.WrongTagEvent as the eventId parameter. |
vtkCell - abstract class to specify cell behavior
Description vtkCell is an abstract class that specifies the interfaces for data cells. Data cells are simple topological elements like points, lines, polygons, and tetrahedra of which visualization datasets are composed. In some cases visualization datasets may explicitly represent cells (e.g., vtkPolyData, vtkUnstructuredGrid), and in some cases, the datasets are implicitly composed of cells (e.g., vtkStructuredPoints).
Caveats The #define VTK_CELL_SIZE is a parameter used to construct cells and provide a general guideline for controlling object execution. This parameter is not a hard boundary: you can create cells with more points.
|
staticprivate |
Automatically generated type registration mechanics.
Kitware.VTK.vtkCell.vtkCell | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
|
virtual |
Given parametric coordinates of a point, return the closest cell boundary, and whether the point is inside or outside of the cell. The cell boundary is defined by a list of points (pts) that specify a face (3D cell), edge (2D cell), or vertex (1D cell). If the return value of the method is != 0, then the point is inside the cell.
Reimplemented in Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkTetra, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkWedge, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkVertex, Kitware.VTK.vtkPixel, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkQuad, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkPolyVertex, and Kitware.VTK.vtkLine.
|
virtual |
Cut (or clip) the cell based on the input cellScalars and the specified value. The output of the clip operation will be one or more cells of the same topological dimension as the original cell. The flag insideOut controls what part of the cell is considered inside - normally cell points whose scalar value is greater than "value" are considered inside. If insideOut is on, this is reversed. Also, if the output cell data is non-NULL, the cell data from the clipped cell is passed to the generated contouring primitives. (Note: the CopyAllocate() method must be invoked on both the output cell and point data. The cellId refers to the cell from which the cell data is copied.)
Reimplemented in Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTetra, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkQuad, Kitware.VTK.vtkVertex, Kitware.VTK.vtkPixel, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkLine, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkPolyVertex, and Kitware.VTK.vtkCell3D.
|
virtual |
Generate contouring primitives. The scalar list cellScalars are scalar values at each cell point. The point locator is essentially a points list that merges points as they are inserted (i.e., prevents duplicates). Contouring primitives can be vertices, lines, or polygons. It is possible to interpolate point data along the edge by providing input and output point data - if outPd is NULL, then no interpolation is performed. Also, if the output cell data is non-NULL, the cell data from the contoured cell is passed to the generated contouring primitives. (Note: the CopyAllocate() method must be invoked on both the output cell and point data. The cellId refers to the cell from which the cell data is copied.)
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTetra, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkVertex, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkQuad, Kitware.VTK.vtkPixel, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkLine, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkVoxel, and Kitware.VTK.vtkCell3D.
|
virtual |
Copy this cell by completely copying internal data structures. This is slower but safer than ShallowCopy().
Reimplemented in Kitware.VTK.vtkGenericCell.
|
virtual |
Compute derivatives given cell subId and parametric coordinates. The values array is a series of data value(s) at the cell points. There is a one-to-one correspondence between cell point and data value(s). Dim is the number of data values per cell point. Derivs are derivatives in the x-y-z coordinate directions for each data value. Thus, if computing derivatives for a scalar function in a hexahedron, dim=1, 8 values are supplied, and 3 deriv values are returned (i.e., derivatives in x-y-z directions). On the other hand, if computing derivatives of velocity (vx,vy,vz) dim=3, 24 values are supplied ((vx,vy,vz)1, (vx,vy,vz)2, ....()8), and 9 deriv values are returned ((d(vx)/dx),(d(vx)/dy),(d(vx)/dz), (d(vy)/dx),(d(vy)/dy), (d(vy)/dz), (d(vz)/dx),(d(vz)/dy),(d(vz)/dz)).
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTetra, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkVertex, Kitware.VTK.vtkQuad, Kitware.VTK.vtkPixel, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkLine, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkHexagonalPrism, and Kitware.VTK.vtkPentagonalPrism.
|
protected |
Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkTetra, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkPixel, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkQuad, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkLine, Kitware.VTK.vtkVertex, Kitware.VTK.vtkNonLinearCell, Kitware.VTK.vtkExplicitCell, and Kitware.VTK.vtkCell3D.
|
virtual |
Determine global coordinate (x[3]) from subId and parametric coordinates. Also returns interpolation weights. (The number of weights is equal to the number of points in the cell.)
Reimplemented in Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkLine, Kitware.VTK.vtkTetra, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkVertex, Kitware.VTK.vtkQuad, Kitware.VTK.vtkPixel, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkHexagonalPrism, and Kitware.VTK.vtkPentagonalPrism.
|
virtual |
Given a point x[3] return inside(=1), outside(=0) cell, or (-1) computational problem encountered; evaluate parametric coordinates, sub-cell id (!=0 only if cell is composite), distance squared of point x[3] to cell (in particular, the sub-cell indicated), closest point on cell to x[3] (unless closestPoint is null, in which case, the closest point and dist2 are not found), and interpolation weights in cell. (The number of weights is equal to the number of points defining the cell). Note: on rare occasions a -1 is returned from the method. This means that numerical error has occurred and all data returned from this method should be ignored. Also, inside/outside is determine parametrically. That is, a point is inside if it satisfies parametric limits. This can cause problems for cells of topological dimension 2 or less, since a point in 3D can project onto the cell within parametric limits but be "far" from the cell. Thus the value dist2 may be checked to determine true in/out.
Reimplemented in Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkLine, Kitware.VTK.vtkTetra, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkVertex, Kitware.VTK.vtkQuad, Kitware.VTK.vtkPixel, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkHexagonalPrism, and Kitware.VTK.vtkPentagonalPrism.
void Kitware.VTK.vtkCell.GetBounds | ( | IntPtr | bounds | ) |
Compute cell bounding box (xmin,xmax,ymin,ymax,zmin,zmax). Copy result into user provided array.
double [] Kitware.VTK.vtkCell.GetBounds | ( | ) |
Compute cell bounding box (xmin,xmax,ymin,ymax,zmin,zmax). Return pointer to array of six double values.
|
virtual |
Return the topological dimensional of the cell (0,1,2, or 3).
Reimplemented in Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkVertex, Kitware.VTK.vtkQuad, Kitware.VTK.vtkPixel, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, and Kitware.VTK.vtkCell3D.
|
virtual |
Return the type of cell.
Reimplemented in Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkTetra, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkVertex, Kitware.VTK.vtkQuad, Kitware.VTK.vtkPixel, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkHexahedron, and Kitware.VTK.vtkPentagonalPrism.
|
virtual |
Return the edge cell from the edgeId of the cell.
Reimplemented in Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkTetra, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkVertex, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuad, Kitware.VTK.vtkPixel, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkHexahedron, and Kitware.VTK.vtkPentagonalPrism.
|
virtual |
Return the face cell from the faceId of the cell.
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkLine, Kitware.VTK.vtkTetra, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuad, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkVertex, Kitware.VTK.vtkPixel, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkHexagonalPrism, and Kitware.VTK.vtkPentagonalPrism.
|
virtual |
Determine whether the cell requires explicit face representation, and methods for setting and getting the faces (see vtkPolyhedron for example usage of these methods).
Reimplemented in Kitware.VTK.vtkPolyhedron, and Kitware.VTK.vtkGenericCell.
double Kitware.VTK.vtkCell.GetLength2 | ( | ) |
Compute Length squared of cell (i.e., bounding box diagonal squared).
|
virtual |
Return the number of edges in the cell.
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTetra, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkQuad, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkVertex, Kitware.VTK.vtkPixel, Kitware.VTK.vtkEmptyCell, and Kitware.VTK.vtkPolyVertex.
|
virtual |
Return the number of faces in the cell.
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTetra, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkWedge, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuad, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkVertex, Kitware.VTK.vtkPixel, Kitware.VTK.vtkEmptyCell, and Kitware.VTK.vtkPolyVertex.
int Kitware.VTK.vtkCell.GetNumberOfPoints | ( | ) |
Return the number of points in the cell.
|
virtual |
Return center of the cell in parametric coordinates. Note that the parametric center is not always located at (0.5,0.5,0.5). The return value is the subId that the center is in (if a composite cell). If you want the center in x-y-z space, invoke the EvaluateLocation() method.
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkTetra, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkWedge, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuad, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkVertex, Kitware.VTK.vtkPixel, and Kitware.VTK.vtkPolyVertex.
|
virtual |
Return a contiguous array of parametric coordinates of the points defining this cell. In other words, (px,py,pz, px,py,pz, etc..) The coordinates are ordered consistent with the definition of the point ordering for the cell. This method returns a non-NULL pointer when the cell is a primary type (i.e., IsPrimaryCell() is true). Note that 3D parametric coordinates are returned no matter what the topological dimension of the cell.
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkTetra, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkLine, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkWedge, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuad, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkVertex, and Kitware.VTK.vtkPixel.
|
virtual |
Return the distance of the parametric coordinate provided to the cell. If inside the cell, a distance of zero is returned. This is used during picking to get the correct cell picked. (The tolerance will occasionally allow cells to be picked who are not really intersected "inside" the cell.)
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkTetra, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, and Kitware.VTK.vtkCubicLine.
int Kitware.VTK.vtkCell.GetPointId | ( | int | ptId | ) |
For cell point i, return the actual point id.
vtkIdList Kitware.VTK.vtkCell.GetPointIds | ( | ) |
Return the list of point ids defining the cell.
vtkPoints Kitware.VTK.vtkCell.GetPoints | ( | ) |
Get the point coordinates for the cell.
void Kitware.VTK.vtkCell.Initialize | ( | int | npts, |
IntPtr | pts, | ||
vtkPoints | p | ||
) |
Initialize cell from outside with point ids and point coordinates specified.
|
virtual |
Some cells require initialization prior to access. For example, they may have to triangulate themselves or set up internal data structures.
Reimplemented in Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkConvexPointSet, and Kitware.VTK.vtkGenericCell.
|
virtual |
Compute the interpolation functions/derivatives (aka shape functions/derivatives) No-ops at this level. Typically overridden in subclasses.
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkTetra, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkLine, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkWedge, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuad, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkVertex, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkPixel, Kitware.VTK.vtkPolyVertex, and Kitware.VTK.vtkEmptyCell.
|
virtual |
Compute the interpolation functions/derivatives (aka shape functions/derivatives) No-ops at this level. Typically overridden in subclasses.
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkTetra, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkLine, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkWedge, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuad, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkVertex, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkPixel, Kitware.VTK.vtkPolyVertex, and Kitware.VTK.vtkEmptyCell.
|
virtual |
Intersect with a ray. Return parametric coordinates (both line and cell) and global intersection coordinates, given ray definition and tolerance. The method returns non-zero value if intersection occurs.
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTetra, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkLine, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkQuad, Kitware.VTK.vtkVertex, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPixel, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkPolyVertex, and Kitware.VTK.vtkEmptyCell.
|
virtual |
Undocumented Block
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkTriangle, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTetra, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkQuad, Kitware.VTK.vtkVertex, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPixel, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkCell3D, Kitware.VTK.vtkExplicitCell, and Kitware.VTK.vtkNonLinearCell.
|
virtual |
Explicit cells require additional representational information beyond the usual cell type and connectivity list information. Most cells in VTK are implicit cells.
Reimplemented in Kitware.VTK.vtkExplicitCell.
|
virtual |
Non-linear cells require special treatment beyond the usual cell type and connectivity list information. Most cells in VTK are implicit cells.
Reimplemented in Kitware.VTK.vtkGenericCell, and Kitware.VTK.vtkNonLinearCell.
|
virtual |
Return whether this cell type has a fixed topology or whether the topology varies depending on the data (e.g., vtkConvexPointSet). This compares to composite cells that are typically composed of primary cells (e.g., a triangle strip composite cell is made up of triangle primary cells).
Reimplemented in Kitware.VTK.vtkPolygon, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkTriangleStrip, and Kitware.VTK.vtkPolyVertex.
|
static |
Undocumented Block
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkTetra, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkQuad, Kitware.VTK.vtkVertex, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPixel, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkCell3D, Kitware.VTK.vtkExplicitCell, and Kitware.VTK.vtkNonLinearCell.
new vtkCell Kitware.VTK.vtkCell.NewInstance | ( | ) |
Undocumented Block
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkTetra, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkQuad, Kitware.VTK.vtkVertex, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPixel, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkCell3D, Kitware.VTK.vtkExplicitCell, and Kitware.VTK.vtkNonLinearCell.
|
virtual |
Determine whether the cell requires explicit face representation, and methods for setting and getting the faces (see vtkPolyhedron for example usage of these methods).
Reimplemented in Kitware.VTK.vtkPolyhedron, and Kitware.VTK.vtkGenericCell.
|
virtual |
Some cells require initialization prior to access. For example, they may have to triangulate themselves or set up internal data structures.
Reimplemented in Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkGenericCell, and Kitware.VTK.vtkConvexPointSet.
|
static |
Undocumented Block
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkTetra, Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkWedge, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkQuad, Kitware.VTK.vtkVertex, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPixel, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkPolyVertex, Kitware.VTK.vtkEmptyCell, Kitware.VTK.vtkCell3D, Kitware.VTK.vtkExplicitCell, and Kitware.VTK.vtkNonLinearCell.
|
virtual |
Determine whether the cell requires explicit face representation, and methods for setting and getting the faces (see vtkPolyhedron for example usage of these methods).
Reimplemented in Kitware.VTK.vtkGenericCell, and Kitware.VTK.vtkPolyhedron.
|
virtual |
Copy this cell by reference counting the internal data structures. This is safe if you want a "read-only" copy. If you modify the cell you might wish to use DeepCopy().
Reimplemented in Kitware.VTK.vtkGenericCell.
Generate simplices of proper dimension. If cell is 3D, tetrahedron are generated; if 2D triangles; if 1D lines; if 0D points. The form of the output is a sequence of points, each n+1 points (where n is topological cell dimension) defining a simplex. The index is a parameter that controls which triangulation to use (if more than one is possible). If numerical degeneracy encountered, 0 is returned, otherwise 1 is returned. This method does not insert new points: all the points that define the simplices are the points that define the cell.
Reimplemented in Kitware.VTK.vtkGenericCell, Kitware.VTK.vtkPolygon, Kitware.VTK.vtkTriangle, Kitware.VTK.vtkPolyhedron, Kitware.VTK.vtkTetra, Kitware.VTK.vtkLine, Kitware.VTK.vtkBiQuadraticQuadraticHexahedron, Kitware.VTK.vtkTriQuadraticHexahedron, Kitware.VTK.vtkQuadraticTetra, Kitware.VTK.vtkBiQuadraticQuadraticWedge, Kitware.VTK.vtkQuadraticLinearWedge, Kitware.VTK.vtkConvexPointSet, Kitware.VTK.vtkQuadraticPyramid, Kitware.VTK.vtkQuadraticWedge, Kitware.VTK.vtkQuadraticLinearQuad, Kitware.VTK.vtkQuadraticHexahedron, Kitware.VTK.vtkBiQuadraticTriangle, Kitware.VTK.vtkQuadraticTriangle, Kitware.VTK.vtkBiQuadraticQuad, Kitware.VTK.vtkWedge, Kitware.VTK.vtkPyramid, Kitware.VTK.vtkCubicLine, Kitware.VTK.vtkQuadraticQuad, Kitware.VTK.vtkQuadraticEdge, Kitware.VTK.vtkVoxel, Kitware.VTK.vtkQuad, Kitware.VTK.vtkVertex, Kitware.VTK.vtkHexagonalPrism, Kitware.VTK.vtkPentagonalPrism, Kitware.VTK.vtkPolyLine, Kitware.VTK.vtkHexahedron, Kitware.VTK.vtkPixel, Kitware.VTK.vtkTriangleStrip, Kitware.VTK.vtkPolyVertex, and Kitware.VTK.vtkEmptyCell.
|
static |
Automatically generated type registration mechanics.
new const string Kitware.VTK.vtkCell.MRFullTypeName = "Kitware.VTK.vtkCell" |
Automatically generated type registration mechanics.