使用 GWT 等交叉编译器的 WebGL(推荐)
我想尝试一下 WebGL,但不太喜欢 JavaScript。是否有任何 *-to-JavaScript 编译器,例如 GWT(Java 到 JavaScript),您可以推荐用于 WebGL 开发?
I'd like to try out WebGL but do not like JavaScript that much. Are there any *-to-JavaScript compilers like GWT (Java to JavaScript) which you can recommend for WebGL development?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
GwtGl 允许在 GWT 项目中使用 WebGL。
GwtGl allows the use of WebGL in a GWT project.
我发现 gwt-g3d 是最好的。
示例对我来说是第一次工作,它附带了许多有用的实用程序,例如常见的着色器类型、常见的矩阵函数等。
I've found gwt-g3d to be the best.
Examples worked the first time for me and it comes with lots of useful utilities e.g. common shader types, common matrix functions etc.
我也投票给GwtGL!使用这个包装器编写 WebGL 应用程序非常容易。我可以利用 Java 的所有优势,并与其他最先进的 JavaScript 库(例如 gl-matrix)交互来获取矩阵函数。我已经根据著名的learningwebgl.com教程写了一些关于如何使用GwtGL的文章 http://gibberfish.net/learning-webgl-lesson-1-with-gwtgl/。
I also vote for GwtGL! It was very easy to write WebGL applications with this wrapper. I can use all benefits from Java and interact with other, state of the art, javascript libraries like gl-matrix to get matrix functions. I've written some posts how to use GwtGL based on the famous learningwebgl.com tutorials here http://gibberfish.net/learning-webgl-lesson-1-with-gwtgl/.