码迷,mamicode.com
首页 > 其他好文 > 详细

坐标变换

时间:2017-09-26 12:57:53      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:坐标变换   变换   直线   坐标   一点   bsp   角度   nbsp   cos   

直线上一点(x0,y0),绕原点逆时转a角度后的坐标x1,y1

x1 = x0 * cos(a) - y0 * sin(a)

y1 = x0 * sin(a) + y0 * cos(a)

 

直线上一点(x0,y0),绕(Xm,ym)  逆时转a角度后的坐标x1,y1

x1 = (x0 - Xm) * cos(a) - (y0 - ym) * sin(a)  + Xm

y1 = (x0 - Xm)* sin(a) + (y0 - ym) * cos(a) + Ym

 

坐标变换

标签:坐标变换   变换   直线   坐标   一点   bsp   角度   nbsp   cos   

原文地址:http://www.cnblogs.com/profession/p/7596063.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!