Matrix Multiplication And vtkTransform Concatenate
We can use vtkTransform’s function concatenate to do matrix multiplication. There are three matrix which have the mathematical relationship. It’s equivalent to the following code. vtkSPtrNew( C, vtkTransform ); C->Concatenate(B); C->Concatenate(A); C->Update(); The experimental code: #include <iostream> #include Read more…