forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkGenericCell.cxx
400 lines (355 loc) · 11.8 KB
/
vtkGenericCell.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/*=========================================================================
Program: Visualization Toolkit
Module: vtkGenericCell.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkGenericCell.h"
#include "vtkObjectFactory.h"
#include "vtkPoints.h"
#include "vtkEmptyCell.h"
#include "vtkVertex.h"
#include "vtkPolyVertex.h"
#include "vtkLine.h"
#include "vtkPolyLine.h"
#include "vtkTriangle.h"
#include "vtkTriangleStrip.h"
#include "vtkQuad.h"
#include "vtkPixel.h"
#include "vtkPolygon.h"
#include "vtkTetra.h"
#include "vtkHexahedron.h"
#include "vtkVoxel.h"
#include "vtkWedge.h"
#include "vtkPyramid.h"
#include "vtkPentagonalPrism.h"
#include "vtkHexagonalPrism.h"
#include "vtkQuadraticEdge.h"
#include "vtkQuadraticTriangle.h"
#include "vtkQuadraticQuad.h"
#include "vtkQuadraticTetra.h"
#include "vtkQuadraticHexahedron.h"
#include "vtkQuadraticWedge.h"
#include "vtkQuadraticPyramid.h"
#include "vtkConvexPointSet.h"
#include "vtkPolyhedron.h"
#include "vtkQuadraticLinearQuad.h"
#include "vtkCubicLine.h"
#include "vtkBiQuadraticQuad.h"
#include "vtkTriQuadraticHexahedron.h"
#include "vtkQuadraticLinearWedge.h"
#include "vtkBiQuadraticTriangle.h"
#include "vtkBiQuadraticQuadraticWedge.h"
#include "vtkBiQuadraticQuadraticHexahedron.h"
#include "vtkIncrementalPointLocator.h"
vtkStandardNewMacro(vtkGenericCell);
//----------------------------------------------------------------------------
// Construct cell.
vtkGenericCell::vtkGenericCell()
{
this->Cell = vtkEmptyCell::New();
}
//----------------------------------------------------------------------------
vtkGenericCell::~vtkGenericCell()
{
this->Cell->Delete();
}
//----------------------------------------------------------------------------
void vtkGenericCell::ShallowCopy(vtkCell *c)
{
this->Cell->ShallowCopy(c);
}
//----------------------------------------------------------------------------
void vtkGenericCell::DeepCopy(vtkCell *c)
{
this->Cell->DeepCopy(c);
}
//----------------------------------------------------------------------------
int vtkGenericCell::GetCellType()
{
return this->Cell->GetCellType();
}
//----------------------------------------------------------------------------
int vtkGenericCell::GetCellDimension()
{
return this->Cell->GetCellDimension();
}
//----------------------------------------------------------------------------
int vtkGenericCell::IsLinear()
{
return this->Cell->IsLinear();
}
//----------------------------------------------------------------------------
int vtkGenericCell::RequiresInitialization()
{
return this->Cell->RequiresInitialization();
}
//----------------------------------------------------------------------------
int vtkGenericCell::RequiresExplicitFaceRepresentation()
{
return this->Cell->RequiresExplicitFaceRepresentation();
}
//----------------------------------------------------------------------------
void vtkGenericCell::SetFaces(vtkIdType *faces)
{
this->Cell->SetFaces(faces);
}
//----------------------------------------------------------------------------
vtkIdType *vtkGenericCell::GetFaces()
{
return this->Cell->GetFaces();
}
//----------------------------------------------------------------------------
void vtkGenericCell::Initialize()
{
this->Cell->Initialize();
}
//----------------------------------------------------------------------------
int vtkGenericCell::GetNumberOfEdges()
{
return this->Cell->GetNumberOfEdges();
}
//----------------------------------------------------------------------------
int vtkGenericCell::GetNumberOfFaces()
{
return this->Cell->GetNumberOfFaces();
}
//----------------------------------------------------------------------------
vtkCell *vtkGenericCell::GetEdge(int edgeId)
{
return this->Cell->GetEdge(edgeId);
}
//----------------------------------------------------------------------------
vtkCell *vtkGenericCell::GetFace(int faceId)
{
return this->Cell->GetFace(faceId);
}
//----------------------------------------------------------------------------
int vtkGenericCell::CellBoundary(int subId, double pcoords[3], vtkIdList *pts)
{
return this->Cell->CellBoundary(subId, pcoords, pts);
}
//----------------------------------------------------------------------------
int vtkGenericCell::EvaluatePosition(double x[3], double closestPoint[3],
int& subId, double pcoords[3],
double& dist2, double *weights)
{
return this->Cell->EvaluatePosition(x, closestPoint, subId,
pcoords, dist2, weights);
}
//----------------------------------------------------------------------------
void vtkGenericCell::EvaluateLocation(int& subId, double pcoords[3],
double x[3], double *weights)
{
this->Cell->EvaluateLocation(subId, pcoords, x, weights);
}
//----------------------------------------------------------------------------
void vtkGenericCell::Contour(double value, vtkDataArray *cellScalars,
vtkIncrementalPointLocator *locator, vtkCellArray *verts,
vtkCellArray *lines, vtkCellArray *polys,
vtkPointData *inPd, vtkPointData *outPd,
vtkCellData *inCd, vtkIdType cellId,
vtkCellData *outCd)
{
this->Cell->Contour(value, cellScalars, locator, verts, lines, polys,
inPd, outPd, inCd, cellId, outCd);
}
//----------------------------------------------------------------------------
void vtkGenericCell::Clip(double value, vtkDataArray *cellScalars,
vtkIncrementalPointLocator *locator, vtkCellArray *connectivity,
vtkPointData *inPd, vtkPointData *outPd,
vtkCellData *inCd, vtkIdType cellId,
vtkCellData *outCd, int insideOut)
{
this->Cell->Clip(value, cellScalars, locator, connectivity, inPd,
outPd, inCd, cellId, outCd, insideOut);
}
//----------------------------------------------------------------------------
int vtkGenericCell::IntersectWithLine(double p1[3], double p2[3], double tol,
double& t, double x[3], double pcoords[3],
int& subId)
{
return this->Cell->IntersectWithLine(p1, p2, tol, t, x, pcoords, subId);
}
//----------------------------------------------------------------------------
int vtkGenericCell::Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts)
{
return this->Cell->Triangulate(index, ptIds, pts);
}
//----------------------------------------------------------------------------
void vtkGenericCell::Derivatives(int subId, double pcoords[3], double *values,
int dim, double *derivs)
{
this->Cell->Derivatives(subId, pcoords, values, dim, derivs);
}
//----------------------------------------------------------------------------
int vtkGenericCell::GetParametricCenter(double pcoords[3])
{
return this->Cell->GetParametricCenter(pcoords);
}
//----------------------------------------------------------------------------
double *vtkGenericCell::GetParametricCoords()
{
return this->Cell->GetParametricCoords();
}
//----------------------------------------------------------------------------
int vtkGenericCell::IsPrimaryCell()
{
return this->Cell->IsPrimaryCell();
}
//----------------------------------------------------------------------------
vtkCell *vtkGenericCell::InstantiateCell(int cellType)
{
vtkCell *cell = NULL;
switch (cellType)
{
case VTK_EMPTY_CELL:
cell = vtkEmptyCell::New();
break;
case VTK_VERTEX:
cell = vtkVertex::New();
break;
case VTK_POLY_VERTEX:
cell = vtkPolyVertex::New();
break;
case VTK_LINE:
cell = vtkLine::New();
break;
case VTK_POLY_LINE:
cell = vtkPolyLine::New();
break;
case VTK_TRIANGLE:
cell = vtkTriangle::New();
break;
case VTK_TRIANGLE_STRIP:
cell = vtkTriangleStrip::New();
break;
case VTK_POLYGON:
cell = vtkPolygon::New();
break;
case VTK_PIXEL:
cell = vtkPixel::New();
break;
case VTK_QUAD:
cell = vtkQuad::New();
break;
case VTK_TETRA:
cell = vtkTetra::New();
break;
case VTK_VOXEL:
cell = vtkVoxel::New();
break;
case VTK_HEXAHEDRON:
cell = vtkHexahedron::New();
break;
case VTK_WEDGE:
cell = vtkWedge::New();
break;
case VTK_PYRAMID:
cell = vtkPyramid::New();
break;
case VTK_PENTAGONAL_PRISM:
cell = vtkPentagonalPrism::New();
break;
case VTK_HEXAGONAL_PRISM:
cell = vtkHexagonalPrism::New();
break;
case VTK_QUADRATIC_EDGE:
cell = vtkQuadraticEdge::New();
break;
case VTK_QUADRATIC_TRIANGLE:
cell = vtkQuadraticTriangle::New();
break;
case VTK_QUADRATIC_QUAD:
cell = vtkQuadraticQuad::New();
break;
case VTK_QUADRATIC_TETRA:
cell = vtkQuadraticTetra::New();
break;
case VTK_QUADRATIC_HEXAHEDRON:
cell = vtkQuadraticHexahedron::New();
break;
case VTK_QUADRATIC_WEDGE:
cell = vtkQuadraticWedge::New();
break;
case VTK_QUADRATIC_PYRAMID:
cell = vtkQuadraticPyramid::New();
break;
case VTK_QUADRATIC_LINEAR_QUAD:
cell = vtkQuadraticLinearQuad::New ();
break;
case VTK_BIQUADRATIC_QUAD:
cell = vtkBiQuadraticQuad::New ();
break;
case VTK_TRIQUADRATIC_HEXAHEDRON:
cell = vtkTriQuadraticHexahedron::New ();
break;
case VTK_QUADRATIC_LINEAR_WEDGE:
cell = vtkQuadraticLinearWedge::New ();
break;
case VTK_BIQUADRATIC_QUADRATIC_WEDGE:
cell = vtkBiQuadraticQuadraticWedge::New ();
break;
case VTK_BIQUADRATIC_QUADRATIC_HEXAHEDRON:
cell = vtkBiQuadraticQuadraticHexahedron::New ();
break;
case VTK_BIQUADRATIC_TRIANGLE:
cell = vtkBiQuadraticTriangle::New();
break;
case VTK_CUBIC_LINE:
cell = vtkCubicLine::New();
break;
case VTK_CONVEX_POINT_SET:
cell = vtkConvexPointSet::New();
break;
case VTK_POLYHEDRON:
cell = vtkPolyhedron::New();
break;
}
return cell;
}
//----------------------------------------------------------------------------
// Set the type of dereferenced cell. Checks to see whether cell type
// has changed and creates a new cell only if necessary.
void vtkGenericCell::SetCellType(int cellType)
{
if ( this->Cell->GetCellType() != cellType )
{
this->Points->UnRegister(this);
this->PointIds->UnRegister(this);
this->PointIds = NULL;
this->Cell->Delete();
vtkCell *cell = vtkGenericCell::InstantiateCell(cellType);
if( !cell )
{
vtkErrorMacro( << "Unsupported cell type! Setting to vtkEmptyCell" );
cell = vtkEmptyCell::New();
}
this->Cell = cell;
this->Points = this->Cell->Points;
this->Points->Register(this);
this->PointIds = this->Cell->PointIds;
this->PointIds->Register(this);
}//need to change cell type
}
//----------------------------------------------------------------------------
void vtkGenericCell::InterpolateFunctions(double pcoords[3], double *weights)
{
this->Cell->InterpolateFunctions(pcoords,weights);
}
//----------------------------------------------------------------------------
void vtkGenericCell::InterpolateDerivs(double pcoords[3], double *derivs)
{
this->Cell->InterpolateDerivs(pcoords,derivs);
}
//----------------------------------------------------------------------------
void vtkGenericCell::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "Cell:\n";
this->Cell->PrintSelf(os,indent.GetNextIndent());
}