----------------------------------------------------------------------------
| 46 | |
| 47 | //---------------------------------------------------------------------------- |
| 48 | void vtkPVGridAxes3DActor::SetModelTransformMatrix(double* matrix) |
| 49 | { |
| 50 | if (!std::equal(matrix, matrix + 16, &this->ModelTransformMatrix->Element[0][0])) |
| 51 | { |
| 52 | std::copy(matrix, matrix + 16, &this->ModelTransformMatrix->Element[0][0]); |
| 53 | this->ModelTransformMatrix->Modified(); |
| 54 | this->Modified(); |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | //---------------------------------------------------------------------------- |
| 59 | void vtkPVGridAxes3DActor::Update(vtkViewport* viewport) |
no test coverage detected