如何计算椭圆周长上的点?
我想在 J2ME 中的椭圆曲线上绘制一个点,
我有 X、Y、宽度、高度和 t 的值。
X 和 Y 是椭圆相对于 Canvas 的位置(根据 J2ME),t 是相对于椭圆中心的角度(我有问题的图像表示,但不幸的是博客不允许插入讨论:))
int ePX = (X + width)+ (int) (width * Math.cos(Math.toRadians(t)));
int ePY = (Y + height)+ (int) (height * -Math.sin(Math.toRadians(t)));
这个方程正确吗?或者对于椭圆,我们需要进行更多计算吗?
I want to plot a point in elliptical curve in J2ME
I have values for X,Y,width,height and t.
X and Y are the position of the ellipse(according to J2ME) with respect to Canvas and t is angle with respect to the center of ellipse(I have an image representation of the problem , but unfortunate blog is not allowing to insert into discussion :) )
int ePX = (X + width)+ (int) (width * Math.cos(Math.toRadians(t)));
int ePY = (Y + height)+ (int) (height * -Math.sin(Math.toRadians(t)));
Is this equation correct? or for ellipse do we need to have some more calculations?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 ( X, Y ) 是椭圆的中心,并且宽度和高度是两个轴,则方程应该为
如果您有所有
t
,则无需与 Math.sin 相乘 -1绘制整个椭圆。If ( X, Y ) is the center of the ellipse, and width and height are the two axes, then the equation should be
The -1 multiplication to Math.sin is unnecessary if you have all
t
to draw the entire ellipse.