| 94 | |
| 95 | VTK_DEPRECATED_IN_9_6_0("Use the const version instead") |
| 96 | int ComputeStructuredCoordinates(double x[3], int ijk[3], double pcoords[3]) |
| 97 | { |
| 98 | const double* pt = x; |
| 99 | return this->ComputeStructuredCoordinates(pt, ijk, pcoords); |
| 100 | }; |
| 101 | |
| 102 | /** |
| 103 | * Given a location in structured coordinates (i-j-k), return the point id. |
no test coverage detected