------------------------------------------------------------------------------
| 1108 | |
| 1109 | //------------------------------------------------------------------------------ |
| 1110 | void vtkSLACReader::SetPhaseShift(int index, double scale) |
| 1111 | { |
| 1112 | if ((index < 0) || (static_cast<size_t>(index) >= this->Internal->PhaseShifts.size())) |
| 1113 | { |
| 1114 | vtkErrorMacro(<< "Bad mode index: " << index); |
| 1115 | } |
| 1116 | |
| 1117 | this->Internal->PhaseShifts[index] = scale; |
| 1118 | } |
| 1119 | |
| 1120 | //------------------------------------------------------------------------------ |
| 1121 | vtkDoubleArray* vtkSLACReader::GetPhaseShifts() |
no test coverage detected