00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00056 #ifndef __vtkPolyVertex_h
00057 #define __vtkPolyVertex_h
00058
00059 #include "vtkCell.h"
00060 #include "vtkVertex.h"
00061
00062 class VTK_COMMON_EXPORT vtkPolyVertex : public vtkCell
00063 {
00064 public:
00065 static vtkPolyVertex *New();
00066 vtkTypeMacro(vtkPolyVertex,vtkCell);
00067
00069
00070 vtkCell *MakeObject();
00071 int GetCellType() {return VTK_POLY_VERTEX;};
00072 int GetCellDimension() {return 0;};
00073 int GetNumberOfEdges() {return 0;};
00074 int GetNumberOfFaces() {return 0;};
00075 vtkCell *GetEdge(int vtkNotUsed(edgeId)) {return 0;};
00076 vtkCell *GetFace(int vtkNotUsed(faceId)) {return 0;};
00077 int CellBoundary(int subId, float pcoords[3], vtkIdList *pts);
00078 void Contour(float value, vtkDataArray *cellScalars,
00079 vtkPointLocator *locator, vtkCellArray *verts,
00080 vtkCellArray *lines, vtkCellArray *polys,
00081 vtkPointData *inPd, vtkPointData *outPd,
00082 vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd);
00083 void Clip(float value, vtkDataArray *cellScalars,
00084 vtkPointLocator *locator, vtkCellArray *verts,
00085 vtkPointData *inPd, vtkPointData *outPd,
00086 vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd,
00087 int insideOut);
00088 int EvaluatePosition(float x[3], float* closestPoint,
00089 int& subId, float pcoords[3],
00090 float& dist2, float *weights);
00091 void EvaluateLocation(int& subId, float pcoords[3], float x[3],
00092 float *weights);
00093 int IntersectWithLine(float p1[3], float p2[3], float tol, float& t,
00094 float x[3], float pcoords[3], int& subId);
00095 int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts);
00096 void Derivatives(int subId, float pcoords[3], float *values,
00097 int dim, float *derivs);
00099
00101 int GetParametricCenter(float pcoords[3]);
00102
00103
00104 protected:
00105 vtkPolyVertex();
00106 ~vtkPolyVertex();
00107
00108 vtkVertex *Vertex;
00109
00110 private:
00111 vtkPolyVertex(const vtkPolyVertex&);
00112 void operator=(const vtkPolyVertex&);
00113 };
00114
00115 #endif
00116
00117