사각형의 각 좌표를 seta 만큼 회전 한 후에 좌표 값을 구하는 방법
seta; 각도
pre_x, pre_y: 이전 좌표
float r = 0.01745328; // 3.141592 / 180 float radian = seta * r; float s = sinf(radian); float c = cosf(radian); float x = pre_x * c - (pre_y * s); float y = pre_x * s + (pre_y * c); |
'Borland' 카테고리의 다른 글
SetWindowPos() 함수를 이용해서 Dialog가 뒤로 사라지는 문제 수정 (0) | 2014.04.29 |
---|---|
STL Container 사용법(vector, map, list) (0) | 2013.01.30 |
Inserting Images into PowerPoint 2007 (0) | 2011.04.09 |
The new and delete Operators with multi-dimensional arrays (다차배열) (0) | 2011.01.18 |
Shift의 의미 (0) | 2011.01.13 |