------------------------------------------------------------------------------
| 1056 | |
| 1057 | //------------------------------------------------------------------------------ |
| 1058 | vtkIdType vtkXMLUnstructuredDataWriter::GetNumberOfInputPoints() |
| 1059 | { |
| 1060 | vtkPointSet* input = this->GetPointSetInput(); |
| 1061 | vtkPoints* points = input->GetPoints(); |
| 1062 | return points ? points->GetNumberOfPoints() : 0; |
| 1063 | } |
| 1064 | |
| 1065 | //------------------------------------------------------------------------------ |
| 1066 | void vtkXMLUnstructuredDataWriter::CalculateDataFractions(float* fractions) |
no test coverage detected