寻找简单的 3D Java 库

发布于 2024-09-27 03:16:15 字数 1539 浏览 1 评论 0原文

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

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

发布评论

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

评论(2

绝影如岚 2024-10-04 03:16:15

如果您需要的只是简单的东西,那么我可能会说您自己编写即可。如果您不需要移动相机,您可以假设许多计算为零,并且您可以执行以下操作来获取任何 3d 点的 2d 坐标:

rect2d.x = rect3d.x / rect3d.z;
rect2d.y = rect3d.y / rect3d.z;

这样做您可以简单地获取所有 3d 点组成多边形,并使用 2d 点作为 SVG 图元。您必须处理的棘手部分是隐藏的表面去除,但这并不太难。阴影将是您真正的问题,但也许您可以使用渐变来模拟光线。

If all you need is something simple then I might say just write it yourself. If you don't need to move the camera you can assume a lot of the calculations zero out, and you can just do the following to get the 2d coordinate for any 3d point:

rect2d.x = rect3d.x / rect3d.z;
rect2d.y = rect3d.y / rect3d.z;

Doing that you can just simple take all of the 3d points that make up your polygon, and use the 2d points as your SVG primitive. The tricky part you're going to have to deal with is hidden surface removal, but that's not too hard. Shading is going to be your real problem, but maybe you can play around with gradients to emulate light.

人生戏 2024-10-04 03:16:15

看看 JFreeChart。查看 Batik 将其保存为 SVG

Have a look at JFreeChart. Have a look at Batik for saving it to SVG

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