计算绕原点旋转某角度后的点的坐标

2024-06-24 14:18

本文主要是介绍计算绕原点旋转某角度后的点的坐标,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

问题:

A点(x, y)按顺时针旋转 theta 角度后点的坐标为A1点(x1,y1)  ,求x1 y1坐标用(x,y)和 theta 来表示

方法一:

设 OA 向量和x轴的角度为 alpha ,

那么顺时针转过 theta后 ,OA1 向量和x轴的角度为 (alpha - theta) 。

使用圆的参数方程来表示点坐标。A的坐标可以表示为:

\[\left\{ {\begin{array}{*{20}{c}}
  {x = r \cdot \cos \alpha } \\ 
  {y = r \cdot \sin \alpha } 
\end{array}} \right.\]

A1的坐标可以表示为(带入A点坐标进行化简)

\[\left\{ {\begin{array}{*{20}{c}}
  {{x_1} = r \cdot \cos (\alpha  - \theta ) = r \cdot (\cos \alpha \cos \theta  + \sin \alpha \sin \theta ) = x \cdot \cos \theta  + y \cdot \sin \theta } \\ 
  {{y_1} = r \cdot \sin (\alpha  - \theta ) = r \cdot (\sin \alpha \cos \theta  - \cos \alpha \sin \theta ) =  - x \cdot \sin \theta  + y \cdot \cos \theta } 
\end{array}} \right.\]

写成矩阵形式:

\[\left( {\begin{array}{*{20}{c}}
  {\cos \theta }&{\sin \theta } \\ 
  { - \sin \theta }&{\cos \theta } 
\end{array}} \right)\left( {\begin{array}{*{20}{c}}
  x \\ 
  y 
\end{array}} \right) = \left( {\begin{array}{*{20}{c}}
  {{x_1}} \\ 
  {{y_1}} 
\end{array}} \right)\]


方法二:

点顺时针转,相当于 点不变,让坐标轴逆指针转。


坐标为(x,y),可以看成: 

x值是点表示的向量,与x正轴单位向量的点积。

y值是点表示的向量,与y正轴单位向量的点积。

即在x轴和y轴上,带方向的投影长度。


所以问题等价的转化为: 坐标轴逆时针转了theta,求点在新的坐标系下的坐标。


新的坐标系的x正轴单位向量为(用原来的坐标系来表示)

\[(\cos \theta ,\sin \theta )\]

新的坐标系的y正轴单位向量为

\[( - \sin \theta ,\cos \theta )\]


所以

A点新的坐标系下的x值 x1= 点积(A点坐标,新坐标系x正轴单位向量)

A点新的坐标系下的y值 y1= 点积(A点坐标,新坐标系y正轴单位向量)

\[\left\{ {\begin{array}{*{20}{c}}
  {{x_1} = x \cdot \cos \theta  + y \cdot \sin \theta } \\ 
  {{y_1} =  - x \cdot \sin \theta  + y \cdot \cos \theta } 
\end{array}} \right.\]

\[\left( {\begin{array}{*{20}{c}}
  {\cos \theta }&{\sin \theta } \\ 
  { - \sin \theta }&{\cos \theta } 
\end{array}} \right)\left( {\begin{array}{*{20}{c}}
  x \\ 
  y 
\end{array}} \right) = \left( {\begin{array}{*{20}{c}}
  {{x_1}} \\ 
  {{y_1}} 
\end{array}} \right)\]


总结:

顺时针旋转矩阵为:

\[\left( {\begin{array}{*{20}{c}}
  {\cos \theta }&{\sin \theta } \\ 
  { - \sin \theta }&{\cos \theta } 
\end{array}} \right)\]


逆时针旋转矩阵为:(theta 变成 -theta带入即可)

\[\left( {\begin{array}{*{20}{c}}
  {\cos \theta }&{ - \sin \theta } \\ 
  {\sin \theta }&{\cos \theta } 
\end{array}} \right)\]


这篇关于计算绕原点旋转某角度后的点的坐标的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1090380

相关文章

poj 1113 凸包+简单几何计算

题意: 给N个平面上的点,现在要在离点外L米处建城墙,使得城墙把所有点都包含进去且城墙的长度最短。 解析: 韬哥出的某次训练赛上A出的第一道计算几何,算是大水题吧。 用convexhull算法把凸包求出来,然后加加减减就A了。 计算见下图: 好久没玩画图了啊好开心。 代码: #include <iostream>#include <cstdio>#inclu

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

XTU 1237 计算几何

题面: Magic Triangle Problem Description: Huangriq is a respectful acmer in ACM team of XTU because he brought the best place in regional contest in history of XTU. Huangriq works in a big compa

poj 2187 凸包or旋转qia壳法

题意: 给n(50000)个点,求这些点与点之间距离最大的距离。 解析: 先求凸包然后暴力。 或者旋转卡壳大法。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <s

Android 10.0 mtk平板camera2横屏预览旋转90度横屏拍照图片旋转90度功能实现

1.前言 在10.0的系统rom定制化开发中,在进行一些平板等默认横屏的设备开发的过程中,需要在进入camera2的 时候,默认预览图像也是需要横屏显示的,在上一篇已经实现了横屏预览功能,然后发现横屏预览后,拍照保存的图片 依然是竖屏的,所以说同样需要将图片也保存为横屏图标了,所以就需要看下mtk的camera2的相关横屏保存图片功能, 如何实现实现横屏保存图片功能 如图所示: 2.mtk

音视频入门基础:WAV专题(10)——FFmpeg源码中计算WAV音频文件每个packet的pts、dts的实现

一、引言 从文章《音视频入门基础:WAV专题(6)——通过FFprobe显示WAV音频文件每个数据包的信息》中我们可以知道,通过FFprobe命令可以打印WAV音频文件每个packet(也称为数据包或多媒体包)的信息,这些信息包含该packet的pts、dts: 打印出来的“pts”实际是AVPacket结构体中的成员变量pts,是以AVStream->time_base为单位的显

计算数组的斜率,偏移,R2

模拟Excel中的R2的计算。         public bool fnCheckRear_R2(List<double[]> lRear, int iMinRear, int iMaxRear, ref double dR2)         {             bool bResult = true;             int n = 0;             dou

GPU 计算 CMPS224 2021 学习笔记 02

并行类型 (1)任务并行 (2)数据并行 CPU & GPU CPU和GPU拥有相互独立的内存空间,需要在两者之间相互传输数据。 (1)分配GPU内存 (2)将CPU上的数据复制到GPU上 (3)在GPU上对数据进行计算操作 (4)将计算结果从GPU复制到CPU上 (5)释放GPU内存 CUDA内存管理API (1)分配内存 cudaErro

Java - BigDecimal 计算分位(百分位)

日常开发中,如果使用数据库来直接查询一组数据的分位数,就比较简单,直接使用对应的函数就可以了,例如:         PERCENT_RANK() OVER(PARTITION BY 分组列名 ORDER BY 目标列名) AS 目标列名_分位数         如果是需要在代码逻辑部分进行分位数的计算,就需要我们自己写一个工具类来支持计算了 import static ja