원점 기준 좌표를 특정 각도만큼 회전하는 공식은 다음과 같다.
rad = degree * (math.pi / 180.0) nx = round(math.cos(rad)*x - math.sin(rad)*y) ny = round(math.sin(rad)*x + math.cos(rad)*y)