@{ * Set the current matrix directly. This actually calls Identity(), * followed by Concatenate(matrix). */
| 207 | * followed by Concatenate(matrix). |
| 208 | */ |
| 209 | void SetMatrix(vtkMatrix4x4* matrix) { this->SetMatrix(*matrix->Element); } |
| 210 | void SetMatrix(const double elements[16]) |
| 211 | { |
| 212 | this->Identity(); |
nothing calls this directly
no test coverage detected