径向绘图算法

时间:2009-11-14 17:06:19

标签: math graphics geometry graph

我必须在AS3.0中编写一个算法,用于绘制径向点的位置。我想输入一个半径和一个应放置点的角度。显然我记得几何课程中2(pi)r会给我一个半径距离点的x。问题是我需要生成x,y并且计算有点复杂。

小推(或回答)会很棒。

感谢。

1 个答案:

答案 0 :(得分:1)

从极坐标(r,theta)到笛卡尔坐标(x,y)的转换:

x = xc + r cos(theta)
y = yc + r sin(theta)

where r = radius and theta = angle in radians and (xc,yc) is the center of the circle