解决
我正在尝试模拟旋转恒星的行星。我目前知道移动图片框的语法 (我在计时器中有这个,所以重复一次)
private void rotate_timer(object sender, EventArgs e) {
picturebox1.location = new point (picturebox1.location.x + 1,
picturebox1.location.y + 1);
}
但我不知道从哪里开始,以便它绕特定点旋转。 我该如何绕它旋转(0,0)?
答案 0 :(得分:0)
这可能有所帮助:
float angle = 0;
float rotSpeed = 1;
Point origin = new Point(222, 222); // your origin
int distance = 100; // your distance
private void timer1_Tick(object sender, EventArgs e)
{
angle += rotSpeed;
int x = (int)(origin.X + distance * Math.Sin(angle *Math.PI / 180f));
int y = (int)(origin.Y + distance * Math.Cos(angle *Math.PI / 180f));
yourControl.Location = new Point(x, y);
}
选择你的计时器Interval
,不要失望,因为它看起来有点不均匀。 Winforms在动画方面非常糟糕。
如果您想要旋转图像,也可以找到example here。