------------------------------------------------------------------------------ Construct the line with two points.
| 19 | //------------------------------------------------------------------------------ |
| 20 | // Construct the line with two points. |
| 21 | vtkBiQuadraticTriangle::vtkBiQuadraticTriangle() |
| 22 | { |
| 23 | this->Edge = vtkQuadraticEdge::New(); |
| 24 | this->Face = vtkTriangle::New(); |
| 25 | this->Scalars = vtkDoubleArray::New(); |
| 26 | this->Scalars->SetNumberOfTuples(3); |
| 27 | |
| 28 | this->Points->SetNumberOfPoints(7); |
| 29 | this->PointIds->SetNumberOfIds(7); |
| 30 | for (int i = 0; i < 7; i++) |
| 31 | { |
| 32 | this->Points->SetPoint(i, 0.0, 0.0, 0.0); |
| 33 | this->PointIds->SetId(i, 0); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | //------------------------------------------------------------------------------ |
| 38 | vtkBiQuadraticTriangle::~vtkBiQuadraticTriangle() |
nothing calls this directly
no test coverage detected