我有包含页面的x和y位置的点列表。我想对所有这些点相对于页面的任何枢轴点应用旋转(目前我们假设它的中心)。
var points = new List<Point>();
points.Add(1,1);
points.Add(15,18);
points.Add(25,2);
points.Add(160,175);
points.Add(150,97);
const int pageHeight = 300;
const int pageWidth = 400;
var pivotPoint = new Point(200, 150); //Center
var angle = 45; // its in degree.
// Apply rotation.
我在这需要一些公式吗?
答案 0 :(得分:6)
public static Point Rotate(Point point, Point pivot, double angleDegree)
{
double angle = angleDegree * Math.PI / 180;
double cos = Math.Cos(angle);
double sin = Math.Sin(angle);
int dx = point.X - pivot.X;
int dy = point.Y - pivot.Y;
double x = cos * dx - sin * dy + pivot.X;
double y = sin * dx + cos * dy + pivot.X;
Point rotated = new Point((int)Math.Round(x), (int)Math.Round(y));
return rotated;
}
static void Main(string[] args)
{
Console.WriteLine(Rotate(new Point(1, 1), new Point(0, 0), 45));
}
答案 1 :(得分:3)
如果要旋转大量点,则可能需要预先计算旋转矩阵...
[C -S U]
[S C V]
[0 0 1]
... WHERE ...
C = cos(θ)
S = sin(θ)
U = (1 - C) * pivot.x + S * pivot.y
V = (1 - C) * pivot.y - S * pivot.x
然后按如下方式旋转每个点:
rotated.x = C * original.x - S * original.y + U;
rotated.x = S * original.x + C * original.y + V;
以上公式是组合三种变换的结果......
rotated = translate(pivot) * rotate(θ) * translate(-pivot) * original
... WHERE ...
translate([x y]) = [1 0 x]
[0 1 y]
[0 0 1]
rotate(θ) = [cos(θ) -sin(θ) 0]
[sin(θ) cos(θ) 0]
[ 0 0 1]
答案 2 :(得分:1)
如果你围绕点(x1,y1)旋转一个点(x,y)一个角度 a 那么你需要一个公式......
x2 = cos(a) * (x-x1) - sin(a) * (y-y1) + x1
y2 = sin(a) * (x-x1) + cos(a) * (y-y1) + y1
Point newRotatedPoint = new Point(x2,y2)