VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkVertex.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00027 #ifndef __vtkVertex_h 00028 #define __vtkVertex_h 00029 00030 #include "vtkCommonDataModelModule.h" // For export macro 00031 #include "vtkCell.h" 00032 00033 class vtkIncrementalPointLocator; 00034 00035 class VTKCOMMONDATAMODEL_EXPORT vtkVertex : public vtkCell 00036 { 00037 public: 00038 static vtkVertex *New(); 00039 vtkTypeMacro(vtkVertex,vtkCell); 00040 void PrintSelf(ostream& os, vtkIndent indent); 00041 00046 int GetCellType() {return VTK_VERTEX;}; 00047 int GetCellDimension() {return 0;}; 00048 int GetNumberOfEdges() {return 0;}; 00049 int GetNumberOfFaces() {return 0;}; 00050 vtkCell *GetEdge(int) {return 0;}; 00051 vtkCell *GetFace(int) {return 0;}; 00052 void Clip(double value, vtkDataArray *cellScalars, 00053 vtkIncrementalPointLocator *locator, vtkCellArray *pts, 00054 vtkPointData *inPd, vtkPointData *outPd, 00055 vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd, 00056 int insideOut); 00057 int EvaluatePosition(double x[3], double* closestPoint, 00058 int& subId, double pcoords[3], 00059 double& dist2, double *weights); 00060 void EvaluateLocation(int& subId, double pcoords[3], double x[3], 00061 double *weights); 00062 virtual double *GetParametricCoords(); 00064 00070 int CellBoundary(int subId, double pcoords[3], vtkIdList *pts); 00071 00073 00077 void Contour(double value, vtkDataArray *cellScalars, 00078 vtkIncrementalPointLocator *locator, vtkCellArray *verts1, 00079 vtkCellArray *lines, vtkCellArray *verts2, 00080 vtkPointData *inPd, vtkPointData *outPd, 00081 vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd); 00083 00085 int GetParametricCenter(double pcoords[3]); 00086 00088 00091 int IntersectWithLine(double p1[3], double p2[3], double tol, double& t, 00092 double x[3], double pcoords[3], int& subId); 00094 00097 int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts); 00098 00100 00102 void Derivatives(int subId, double pcoords[3], double *values, 00103 int dim, double *derivs); 00105 00107 static void InterpolationFunctions(double pcoords[3], double weights[1]); 00109 static void InterpolationDerivs(double pcoords[3], double derivs[3]); 00111 00113 virtual void InterpolateFunctions(double pcoords[3], double weights[1]) 00114 { 00115 vtkVertex::InterpolationFunctions(pcoords,weights); 00116 } 00117 virtual void InterpolateDerivs(double pcoords[3], double derivs[3]) 00118 { 00119 vtkVertex::InterpolationDerivs(pcoords,derivs); 00120 } 00122 00123 protected: 00124 vtkVertex(); 00125 ~vtkVertex() {}; 00126 00127 private: 00128 vtkVertex(const vtkVertex&); // Not implemented. 00129 void operator=(const vtkVertex&); // Not implemented. 00130 }; 00131 00132 //---------------------------------------------------------------------------- 00133 inline int vtkVertex::GetParametricCenter(double pcoords[3]) 00134 { 00135 pcoords[0] = pcoords[1] = pcoords[2] = 0.0; 00136 return 0; 00137 } 00138 00139 #endif 00140 00141