forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkPixel.cxx
693 lines (608 loc) · 19.4 KB
/
vtkPixel.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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
/*=========================================================================
Program: Visualization Toolkit
Module: vtkPixel.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 "vtkPixel.h"
#include "vtkObjectFactory.h"
#include "vtkQuad.h"
#include "vtkTriangle.h"
#include "vtkPlane.h"
#include "vtkMath.h"
#include "vtkCellArray.h"
#include "vtkLine.h"
#include "vtkIncrementalPointLocator.h"
#include "vtkPointData.h"
#include "vtkCellData.h"
#include "vtkPoints.h"
vtkStandardNewMacro(vtkPixel);
//----------------------------------------------------------------------------
// Construct the pixel with four points.
vtkPixel::vtkPixel()
{
int i;
this->Points->SetNumberOfPoints(4);
this->PointIds->SetNumberOfIds(4);
for (i = 0; i < 4; i++)
{
this->Points->SetPoint(i, 0.0, 0.0, 0.0);
}
for (i = 0; i < 4; i++)
{
this->PointIds->SetId(i,0);
}
this->Line = vtkLine::New();
}
//----------------------------------------------------------------------------
vtkPixel::~vtkPixel()
{
this->Line->Delete();
}
//----------------------------------------------------------------------------
int vtkPixel::EvaluatePosition(double x[3], double* closestPoint,
int& subId, double pcoords[3],
double& dist2, double *weights)
{
double pt1[3], pt2[3], pt3[3];
int i;
double p[3], p21[3], p31[3], cp[3];
double l21, l31, n[3];
subId = 0;
pcoords[2] = 0.0;
// Get normal for pixel
//
this->Points->GetPoint(0, pt1);
this->Points->GetPoint(1, pt2);
this->Points->GetPoint(2, pt3);
vtkTriangle::ComputeNormal (pt1, pt2, pt3, n);
// Project point to plane
//
vtkPlane::ProjectPoint(x,pt1,n,cp);
for (i=0; i<3; i++)
{
p21[i] = pt2[i] - pt1[i];
p31[i] = pt3[i] - pt1[i];
p[i] = x[i] - pt1[i];
}
if ( (l21=vtkMath::Norm(p21)) == 0.0 )
{
l21 = 1.0;
}
if ( (l31=vtkMath::Norm(p31)) == 0.0 )
{
l31 = 1.0;
}
pcoords[0] = vtkMath::Dot(p21,p) / (l21*l21);
pcoords[1] = vtkMath::Dot(p31,p) / (l31*l31);
this->InterpolationFunctions(pcoords, weights);
if ( pcoords[0] >= 0.0 && pcoords[0] <= 1.0 &&
pcoords[1] >= 0.0 && pcoords[1] <= 1.0 )
{
if (closestPoint)
{
closestPoint[0] = cp[0];
closestPoint[1] = cp[1];
closestPoint[2] = cp[2];
dist2 =
vtkMath::Distance2BetweenPoints(closestPoint,x); //projection distance
}
return 1;
}
else
{
double pc[3], w[4];
if (closestPoint)
{
for (i=0; i<2; i++)
{
if (pcoords[i] < 0.0)
{
pc[i] = 0.0;
}
else if (pcoords[i] > 1.0)
{
pc[i] = 1.0;
}
else
{
pc[i] = pcoords[i];
}
}
this->EvaluateLocation(subId, pc, closestPoint,
static_cast<double *>(w));
dist2 = vtkMath::Distance2BetweenPoints(closestPoint,x);
}
return 0;
}
}
//----------------------------------------------------------------------------
void vtkPixel::EvaluateLocation(int& subId, double pcoords[3], double x[3],
double *weights)
{
double pt1[3], pt2[3], pt3[3];
int i;
subId = 0;
this->Points->GetPoint(0, pt1);
this->Points->GetPoint(1, pt2);
this->Points->GetPoint(2, pt3);
for (i=0; i<3; i++)
{
x[i] = pt1[i] + pcoords[0]*(pt2[i] - pt1[i]) +
pcoords[1]*(pt3[i] - pt1[i]);
}
this->InterpolationFunctions(pcoords, weights);
}
//----------------------------------------------------------------------------
int vtkPixel::CellBoundary(int vtkNotUsed(subId), double pcoords[3], vtkIdList *pts)
{
double t1=pcoords[0]-pcoords[1];
double t2=1.0-pcoords[0]-pcoords[1];
pts->SetNumberOfIds(2);
// compare against two lines in parametric space that divide element
// into four pieces.
if ( t1 >= 0.0 && t2 >= 0.0 )
{
pts->SetId(0,this->PointIds->GetId(0));
pts->SetId(1,this->PointIds->GetId(1));
}
else if ( t1 >= 0.0 && t2 < 0.0 )
{
pts->SetId(0,this->PointIds->GetId(1));
pts->SetId(1,this->PointIds->GetId(3));
}
else if ( t1 < 0.0 && t2 < 0.0 )
{
pts->SetId(0,this->PointIds->GetId(3));
pts->SetId(1,this->PointIds->GetId(2));
}
else //( t1 < 0.0 && t2 >= 0.0 )
{
pts->SetId(0,this->PointIds->GetId(2));
pts->SetId(1,this->PointIds->GetId(0));
}
if ( pcoords[0] < 0.0 || pcoords[0] > 1.0 ||
pcoords[1] < 0.0 || pcoords[1] > 1.0 )
{
return 0;
}
else
{
return 1;
}
}
//----------------------------------------------------------------------------
//
// Marching squares
//
#include "vtkMarchingSquaresCases.h"
static int edges[4][2] = { {0,1}, {1,3}, {2,3}, {0,2} };
void vtkPixel::Contour(double value, vtkDataArray *cellScalars,
vtkIncrementalPointLocator *locator,
vtkCellArray *vtkNotUsed(verts),
vtkCellArray *lines,
vtkCellArray *vtkNotUsed(polys),
vtkPointData *inPd, vtkPointData *outPd,
vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd)
{
static int CASE_MASK[4] = {1,2,8,4}; //note differenceom quad!
vtkMarchingSquaresLineCases *lineCase;
EDGE_LIST *edge;
int i, j, index, *vert;
int newCellId;
vtkIdType pts[2];
double t, x1[3], x2[3], x[3];
// Build the case table
for ( i=0, index = 0; i < 4; i++)
{
if (cellScalars->GetComponent(i,0) >= value)
{
index |= CASE_MASK[i];
}
}
lineCase = vtkMarchingSquaresLineCases::GetCases() + index;
edge = lineCase->edges;
for ( ; edge[0] > -1; edge += 2 )
{
for (i=0; i<2; i++) // insert line
{
vert = edges[edge[i]];
t = (value - cellScalars->GetComponent(vert[0],0)) /
(cellScalars->GetComponent(vert[1],0) -
cellScalars->GetComponent(vert[0],0));
this->Points->GetPoint(vert[0], x1);
this->Points->GetPoint(vert[1], x2);
for (j=0; j<3; j++)
{
x[j] = x1[j] + t * (x2[j] - x1[j]);
}
if ( locator->InsertUniquePoint(x, pts[i]) )
{
if ( outPd )
{
int p1 = this->PointIds->GetId(vert[0]);
int p2 = this->PointIds->GetId(vert[1]);
outPd->InterpolateEdge(inPd,pts[i],p1,p2,t);
}
}
}
// check for degenerate line
if ( pts[0] != pts[1] )
{
newCellId = lines->InsertNextCell(2,pts);
outCd->CopyData(inCd,cellId,newCellId);
}
}
}
//----------------------------------------------------------------------------
vtkCell *vtkPixel::GetEdge(int edgeId)
{
int *verts;
verts = edges[edgeId];
// load point id's
this->Line->PointIds->SetId(0,this->PointIds->GetId(verts[0]));
this->Line->PointIds->SetId(1,this->PointIds->GetId(verts[1]));
// load coordinates
this->Line->Points->SetPoint(0,this->Points->GetPoint(verts[0]));
this->Line->Points->SetPoint(1,this->Points->GetPoint(verts[1]));
return this->Line;
}
//----------------------------------------------------------------------------
//
// Compute interpolation functions (similar but different than Quad interpolation
// functions)
//
void vtkPixel::InterpolationFunctions(double pcoords[3], double sf[4])
{
double rm, sm;
rm = 1. - pcoords[0];
sm = 1. - pcoords[1];
sf[0] = rm * sm;
sf[1] = pcoords[0] * sm;
sf[2] = rm * pcoords[1];
sf[3] = pcoords[0] * pcoords[1];
}
//----------------------------------------------------------------------------
//
// Compute derivatives of interpolation functions.
//
void vtkPixel::InterpolationDerivs(double pcoords[3], double derivs[8])
{
double rm, sm;
rm = 1. - pcoords[0];
sm = 1. - pcoords[1];
// r derivatives
derivs[0] = -sm;
derivs[1] = sm;
derivs[2] = -pcoords[1];
derivs[3] = pcoords[1];
// s derivatives
derivs[4] = -rm;
derivs[5] = -pcoords[0];
derivs[6] = rm;
derivs[7] = pcoords[0];
}
//----------------------------------------------------------------------------
//
// Intersect plane; see whether point is inside.
//
int vtkPixel::IntersectWithLine(double p1[3], double p2[3], double tol, double& t,
double x[3], double pcoords[3], int& subId)
{
double pt1[3], pt4[3], n[3];
double tol2 = tol*tol;
double closestPoint[3];
double dist2, weights[4];
int i;
subId = 0;
pcoords[0] = pcoords[1] = pcoords[2] = 0.0;
//
// Get normal for triangle
//
this->Points->GetPoint(0, pt1);
this->Points->GetPoint(3, pt4);
n[0] = n[1] = n[2] = 0.0;
for (i=0; i<3; i++)
{
if ( (pt4[i] - pt1[i]) <= 0.0 )
{
n[i] = 1.0;
break;
}
}
//
// Intersect plane of pixel with line
//
if ( ! vtkPlane::IntersectWithLine(p1,p2,n,pt1,t,x) )
{
return 0;
}
//
// Use evaluate position
//
if (this->EvaluatePosition(x, closestPoint, subId, pcoords, dist2, weights))
{
if ( dist2 <= tol2 )
{
return 1;
}
}
return 0;
}
//----------------------------------------------------------------------------
int vtkPixel::Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts)
{
pts->Reset();
ptIds->Reset();
if ( (index % 2) )
{
ptIds->InsertId(0,this->PointIds->GetId(0));
pts->InsertPoint(0,this->Points->GetPoint(0));
ptIds->InsertId(1,this->PointIds->GetId(1));
pts->InsertPoint(1,this->Points->GetPoint(1));
ptIds->InsertId(2,this->PointIds->GetId(2));
pts->InsertPoint(2,this->Points->GetPoint(2));
ptIds->InsertId(3,this->PointIds->GetId(1));
pts->InsertPoint(3,this->Points->GetPoint(1));
ptIds->InsertId(4,this->PointIds->GetId(3));
pts->InsertPoint(4,this->Points->GetPoint(3));
ptIds->InsertId(5,this->PointIds->GetId(2));
pts->InsertPoint(5,this->Points->GetPoint(2));
}
else
{
ptIds->InsertId(0,this->PointIds->GetId(0));
pts->InsertPoint(0,this->Points->GetPoint(0));
ptIds->InsertId(1,this->PointIds->GetId(1));
pts->InsertPoint(1,this->Points->GetPoint(1));
ptIds->InsertId(2,this->PointIds->GetId(3));
pts->InsertPoint(2,this->Points->GetPoint(3));
ptIds->InsertId(3,this->PointIds->GetId(0));
pts->InsertPoint(3,this->Points->GetPoint(0));
ptIds->InsertId(4,this->PointIds->GetId(3));
pts->InsertPoint(4,this->Points->GetPoint(3));
ptIds->InsertId(5,this->PointIds->GetId(2));
pts->InsertPoint(5,this->Points->GetPoint(2));
}
return 1;
}
//----------------------------------------------------------------------------
void vtkPixel::Derivatives(int vtkNotUsed(subId),
double pcoords[3],
double *values,
int dim, double *derivs)
{
double functionDerivs[8], sum;
int i, j, k, plane, idx[2], jj;
double x0[3], x1[3], x2[3], x3[3], spacing[3];
this->Points->GetPoint(0, x0);
this->Points->GetPoint(1, x1);
this->Points->GetPoint(2, x2);
this->Points->GetPoint(3, x3);
//figure which plane this pixel is in
for (i=0; i < 3; i++)
{
spacing[i] = x3[i] - x0[i];
}
if ( spacing[0] > spacing[2] && spacing[1] > spacing[2] ) // z-plane
{
plane = 2;
idx[0] = 0; idx[1] = 1;
}
else if ( spacing[0] > spacing[1] && spacing[2] > spacing[1] ) // y-plane
{
plane = 1;
idx[0] = 0; idx[1] = 2;
}
else // x-plane
{
plane = 0;
idx[0] = 1; idx[1] = 2;
}
spacing[0] = x1[idx[0]] - x0[idx[0]];
spacing[1] = x2[idx[1]] - x0[idx[1]];
// get derivatives in r-s directions
this->InterpolationDerivs(pcoords, functionDerivs);
// since two of the x-y-z axes are aligned with r-s axes, only need to scale
// the derivative values by the data spacing.
for (k=0; k < dim; k++) //loop over values per vertex
{
for (jj=j=0; j < 3; j++) //loop over derivative directions
{
if ( j == plane ) // 0-derivate values in this direction
{
sum = 0.0;
}
else //compute derivatives
{
for (sum=0.0, i=0; i < 4; i++) //loop over interp. function derivatives
{
sum += functionDerivs[4*jj + i] * values[dim*i + k];
}
sum /= spacing[idx[jj++]];
}
derivs[3*k + j] = sum;
}
}
}
//----------------------------------------------------------------------------
// support pixel clipping
typedef int PIXEL_EDGE_LIST;
typedef struct {
PIXEL_EDGE_LIST edges[14];
} PIXEL_CASES;
static PIXEL_CASES pixelCases[] = {
{{ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 0
{{ 3, 100, 0, 3, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 1
{{ 3, 101, 1, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 2
{{ 4, 100, 101, 1, 3, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 3
{{ 3, 103, 2, 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 4
{{ 3, 100, 0, 3, 3, 103, 2, 1, 4, 0, 1, 2, 3, -1}}, // 5
{{ 4, 101, 103, 2, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 6
{{ 3, 100, 101, 3, 3, 101, 2, 3, 3, 101, 103, 2, -1, -1}}, // 7
{{ 3, 102, 3, 2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 8
{{ 4, 100, 0, 2, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 9
{{ 3, 101, 1, 0, 3, 102, 3, 2, 4, 0, 1, 2, 3, -1}}, // 10
{{ 3, 100, 101, 1, 3, 100, 1, 2, 3, 100, 2, 102, -1, -1}}, // 11
{{ 4, 103, 102, 3, 1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 12
{{ 3, 100, 0, 102, 3, 0, 1, 102, 3, 1, 103, 102, -1, -1}}, // 13
{{ 3, 0, 101, 103, 3, 0, 103, 3, 3, 103, 102, 3, -1, -1}}, // 14
{{ 4, 100, 101, 103, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 15
};
static PIXEL_CASES pixelCasesComplement[] = {
{{ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 0
{{ 3, 100, 0, 3, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 1
{{ 3, 101, 1, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 2
{{ 4, 100, 101, 1, 3, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 3
{{ 3, 103, 2, 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 4
{{ 3, 100, 0, 3, 3, 103, 2, 1, -1, -1, -1, -1, -1, -1}}, // 5
{{ 4, 101, 103, 2, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 6
{{ 3, 100, 101, 3, 3, 101, 2, 3, 3, 101, 103, 2, -1, -1}}, // 7
{{ 3, 102, 3, 2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 8
{{ 4, 100, 0, 2, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 9
{{ 3, 101, 1, 0, 3, 102, 3, 2, -1, -1, -1, -1, -1, -1}}, // 10
{{ 3, 100, 101, 1, 3, 100, 1, 2, 3, 100, 2, 102, -1, -1}}, // 11
{{ 4, 103, 102, 3, 1, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 12
{{ 3, 100, 0, 102, 3, 0, 1, 102, 3, 1, 103, 102, -1, -1}}, // 13
{{ 3, 0, 101, 103, 3, 0, 103, 3, 3, 103, 102, 3, -1, -1}}, // 14
{{ 4, 100, 101, 103, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1}}, // 15
};
//----------------------------------------------------------------------------
// Clip this pixel using scalar value provided. Like contouring, except
// that it cuts the pixel to produce quads and/or triangles.
void vtkPixel::Clip(double value, vtkDataArray *cellScalars,
vtkIncrementalPointLocator *locator, vtkCellArray *polys,
vtkPointData *inPd, vtkPointData *outPd,
vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd,
int insideOut)
{
static int CASE_MASK[4] = {1,2,8,4}; //note difference from quad!
PIXEL_CASES *pixelCase;
PIXEL_EDGE_LIST *edge;
int i, j, index, *vert;
int e1, e2;
int newCellId;
vtkIdType pts[4];
int vertexId;
double t, x1[3], x2[3], x[3], deltaScalar;
double scalar0, scalar1, e1Scalar;
// Build the index into the case table
if ( insideOut )
{
for ( i=0, index = 0; i < 4; i++)
{
if (cellScalars->GetComponent(i,0) <= value)
{
index |= CASE_MASK[i];
}
}
// Select case based on the index and get the list of edges for this case
pixelCase = pixelCases + index;
}
else
{
for ( i=0, index = 0; i < 4; i++)
{
if (cellScalars->GetComponent(i,0) > value)
{
index |= CASE_MASK[i];
}
}
// Select case based on the index and get the list of edges for this case
pixelCase = pixelCasesComplement + index;
}
edge = pixelCase->edges;
// generate each pixel
for ( ; edge[0] > -1; edge += edge[0]+1 )
{
for (i=0; i < edge[0]; i++) // insert pixel or triangle
{
// vertex exists, and need not be interpolated
if (edge[i+1] >= 100)
{
vertexId = edge[i+1] - 100;
this->Points->GetPoint(vertexId, x);
if ( locator->InsertUniquePoint(x, pts[i]) )
{
outPd->CopyData(inPd,this->PointIds->GetId(vertexId),pts[i]);
}
}
else //new vertex, interpolate
{
vert = edges[edge[i+1]];
// calculate a preferred interpolation direction
scalar0 = cellScalars->GetComponent(vert[0],0);
scalar1 = cellScalars->GetComponent(vert[1],0);
deltaScalar = scalar1 - scalar0;
if (deltaScalar > 0)
{
e1 = vert[0]; e2 = vert[1];
e1Scalar = scalar0;
}
else
{
e1 = vert[1]; e2 = vert[0];
e1Scalar = scalar1;
deltaScalar = -deltaScalar;
}
// linear interpolation
if (deltaScalar == 0.0)
{
t = 0.0;
}
else
{
t = (value - e1Scalar) / deltaScalar;
}
this->Points->GetPoint(e1, x1);
this->Points->GetPoint(e2, x2);
for (j=0; j<3; j++)
{
x[j] = x1[j] + t * (x2[j] - x1[j]);
}
if ( locator->InsertUniquePoint(x, pts[i]) )
{
int p1 = this->PointIds->GetId(e1);
int p2 = this->PointIds->GetId(e2);
outPd->InterpolateEdge(inPd,pts[i],p1,p2,t);
}
}
}
// check for degenerate output
if ( edge[0] == 3 ) //i.e., a triangle
{
if (pts[0] == pts[1] || pts[0] == pts[2] || pts[1] == pts[2] )
{
continue;
}
}
else // a pixel
{
if ((pts[0] == pts[3] && pts[1] == pts[2]) ||
(pts[0] == pts[1] && pts[3] == pts[2]) )
{
continue;
}
}
newCellId = polys->InsertNextCell(edge[0],pts);
outCd->CopyData(inCd,cellId,newCellId);
}
}
//----------------------------------------------------------------------------
static double vtkPixelCellPCoords[12] = {0.0,0.0,0.0, 1.0,0.0,0.0,
0.0,1.0,0.0, 1.0,1.0,0.0};
double *vtkPixel::GetParametricCoords()
{
return vtkPixelCellPCoords;
}
//----------------------------------------------------------------------------
void vtkPixel::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "Line:\n";
this->Line->PrintSelf(os,indent.GetNextIndent());
}