Home > database >  how to find the center of rotation of a point in 2d space
how to find the center of rotation of a point in 2d space

Time:10-01

I have a 2d point that rotates around some center of rotation other than the origin.

how can calculate the center of rotation given only the different positions of the point?

CodePudding user response:

To get wanted result, you need three points.

Having them as points at circumference, you can calculate center of circle.

Look here or get formulas from wiki

  • Related