Answers for "calculate rotation around a point 2d"

C#
1

get 2d rotation from 2 position math

Vector3 dir = new Vector3(position2.x - position1.x, position2.y - position1.y);
float angle = Mathf.Atan2(dir.y, dir.x) * Mathf.Rad2Deg;
Quaternion rotation = Quaternion.Euler( 0f, 0f, angle );
Posted by: Guest on February-13-2021
0

rotation 2d d'un point

x' = x . cos(a) – y . sin(a)
y' = x . sin(a) + y . cos(a)
Posted by: Guest on June-10-2021

Code answers related to "calculate rotation around a point 2d"

C# Answers by Framework

Browse Popular Code Answers by Language