(arr)
| 29 | |
| 30 | # Create testing variables |
| 31 | def fill_array(arr): |
| 32 | for i in range(arr.GetNumberOfTuples()): |
| 33 | arr.SetTuple(i, [1000*(i+1) + (j+1) for j in range(arr.GetNumberOfComponents())]) |
| 34 | |
| 35 | for dimension, name in [(1, "PointScalars"), (3, "PointVectors"), (6, "PointTensors6"), (9, "PointTensors9")]: |
| 36 | arr = vtk.vtkFloatArray() |
no test coverage detected