Skip to content
Advertisement

Rotate Transformation Matrix Around Point

I have a 4×4 transoformation matrix T0 as a starting pose.

Now I want to rotate T0 with an 3×3 rotation matrix R around a center point to get a new pose T1.

JavaScript

How to calculate T1?

Advertisement

Answer

The solution is described here. And the working code is below:

JavaScript
Advertisement