AS3(或任何语言)三角形的三角函数库?

发布于 2024-07-17 15:26:26 字数 146 浏览 9 评论 0原文

有谁知道有一个库可以轻松地删除角度和边长的参数,并让它使用三角函数自动推断出非给定的角度和长度? 即使它的性能很差,它对于原型设计也非常有用,并且可以优化性能(甚至提供表查找和排序)。 如果没有这样的东西,我可能会写它。

谢谢,
乌姆普

Does anyone know of a library for easily dropping in parameters of angles and lengths of sides, and letting it automagically extrapolate the non-given angles and lengths using trig? Even if it had lame performance, it would be very useful for prototyping, and performance could be optimized (even supplying table lookup and the sort). If nothing like that is out there, I will probably write it.

Thanks,
umop

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

任谁 2024-07-24 15:26:26

找到一个库会很困难,因为三角函数非常简单,您只需要做一个快速公式即可。

   a^2 + b^2 = c^2

   s=o/h c=a/h t=o/a

我认为编写自己的函数来完成这些杂务会非常非常快:)

It'll be tough to find a library because trig is so simple, you just need to do a quick formula.

   a^2 + b^2 = c^2

   s=o/h c=a/h t=o/a

I'm thinking writing your own function to do these chores would be very very quick :)

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