Message 1 of 11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello together,
A series of rotations can be concatenated into a single rotation matrix by multiplying their rotation matrices together. Which is the order in Inventor?
Public Sub DumpMatrix(oMatrix As Matrix) Dim i As Integer For i = 1 To 4 Debug.Print Format(oMatrix.Cell(i, 1), "0.000000") & ", " & _ Format(oMatrix.Cell(i, 2), "0.000000") & ", " & _ Format(oMatrix.Cell(i, 3), "0.000000") & ", " & _ Format(oMatrix.Cell(i, 4), "0.000000") Next End Sub
Does there exist a sample for the multiplication?
Thank you
Georg
Solved! Go to Solution.