如何计算椭圆周长上的点?

发布于 2025-01-08 13:59:27 字数 393 浏览 0 评论 0原文

我想在 J2ME 中的椭圆曲线上绘制一个点,

我有 X、Y、宽度、高度和 t 的值。

XY 是椭圆相对于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别闹i 2025-01-15 13:59:27

如果 ( X, Y ) 是椭圆的中心,并且宽度和高度是两个轴,则方程应该为

int ePX = X + (int) (width  * Math.cos(Math.toRadians(t)));
int ePY = Y + (int) (height * Math.sin(Math.toRadians(t)));

如果您有所有 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

int ePX = X + (int) (width  * Math.cos(Math.toRadians(t)));
int ePY = Y + (int) (height * Math.sin(Math.toRadians(t)));

The -1 multiplication to Math.sin is unnecessary if you have all t to draw the entire ellipse.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文