@{ * Set the current matrix directly. Note: First, the current * matrix is set to the identity, then the input matrix is concatenated. */
| 121 | * matrix is set to the identity, then the input matrix is concatenated. |
| 122 | */ |
| 123 | void SetMatrix(vtkMatrix4x4* matrix) { this->SetMatrix(*matrix->Element); } |
| 124 | void SetMatrix(const double elements[16]) |
| 125 | { |
| 126 | this->Concatenation->Identity(); |
nothing calls this directly
no test coverage detected