<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1">
<title></title>
</head>
<body>
<div class="moz-text-flowed"
style="font-family: -moz-fixed; font-size: 13px;" lang="x-western">1. Is
there a direct way to extract triangles and only triangles from a <br>
vtkPolyData? <br>
<br>
2. If I create a model by inserting its points and edges, what I obtain <br>
does not contain anything else, I guess: the polygonal lines are not there.
<br>
Take for instance next code snippet: <br>
<br>
float[][] x = new float[4][]{ <br>
new float[]{0,0,0}, <br>
new float[]{1,0,1}, <br>
new float[]{1,1,1}, <br>
new float[]{1,2,2} <br>
}; <br>
vtkPolyData model = vtkPolyData.New(); <br>
vtkPoints points = vtkPoints.New(); <br>
// Load the point, cell, and data attributes. <br>
for (int i=0; i<4; i++) points.InsertPoint(i,x[i]); <br>
<br>
// We now assign the pieces to the vtkPolyData. <br>
model = vtkPolyData.New(); <br>
model.SetPoints(points); <br>
points.Delete(); <br>
model.Allocate(1000,1000); <br>
model.InsertNextCell(3,2,new int[]{0,1}); <br>
model.InsertNextCell(3,2,new int[]{1,2}); <br>
model.InsertNextCell(3,2,new int[]{2,0}); <br>
model.InsertNextCell(3,2,new int[]{2,3}); <br>
model.Squeeze(); <br>
<br>
This model has four straight line segments; three of them form a <br>
triangle, the other is a "dangling edge". <br>
<br>
How can I persuade the model to build higher level cells? (I mean, <br>
at least triangles.) The following sentences: <br>
<br>
model.BuildCells(); <br>
int nrCells = model.GetNumberOfPolys(); <br>
<br>
have no visible effect, i.e., nrCells will be 0. What does, then, BuildCells
do? <br>
<br>
3. What does vtkTriangleFilter do? If I apply it to the previous model, <br>
the output of this filter will be the same as the input. <br>
<br>
Petru <br>
<br>
<br>
</div>
</body>
</html>