------------------------------------------------------------------------------
| 106 | |
| 107 | //------------------------------------------------------------------------------ |
| 108 | void vtkUniformHyperTreeGrid::SetGridScale(double h0, double h1, double h2) |
| 109 | { |
| 110 | // Call superclass |
| 111 | this->GridScale[0] = h0; |
| 112 | this->GridScale[1] = h1; |
| 113 | this->GridScale[2] = h2; |
| 114 | |
| 115 | // Update modification time |
| 116 | this->Modified(); |
| 117 | } |
| 118 | |
| 119 | //------------------------------------------------------------------------------ |
| 120 | void vtkUniformHyperTreeGrid::SetGridScale(double* h) |