Answers for "how to get x and y from theta and r in cirlcle"

0

how to get x and y from theta and r in cirlcle

x = radius * Math.sin(Math.PI * 2 * angle / 360);

y = radius * Math.cos(Math.PI * 2 * angle / 360);
Posted by: Guest on September-05-2020

Browse Popular Code Answers by Language