------------------------------------------------------------------------------ update and copy out the current matrix
| 223 | //------------------------------------------------------------------------------ |
| 224 | // update and copy out the current matrix |
| 225 | void vtkHomogeneousTransform::GetMatrix(vtkMatrix4x4* m) |
| 226 | { |
| 227 | this->Update(); |
| 228 | m->DeepCopy(this->Matrix); |
| 229 | } |
| 230 | |
| 231 | //------------------------------------------------------------------------------ |
| 232 | void vtkHomogeneousTransform::InternalDeepCopy(vtkAbstractTransform* transform) |