문제

I want to the convert an spinning angle on an Circle converted to another system. The Source System is seen on the left and the target on the right. With which operation can I convert these angles?

enter image description here

도움이 되었습니까?

해결책

double rightAngle = 90 - leftAngle;
if (rightAngle < 0)
  rightAngle += 360;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top