WebGL with cross-compiler like GWT (recommendations)

I would like to try WebGL, but I don't really like JavaScript. Are there * -to-JavaScript compilers like GWT (Java for JavaScript) that you can recommend for developing WebGL?

+4
source share
3 answers

GwtGl allows you to use WebGL in a GWT project.

+6
source

I found gwt-g3d to be the best.

The examples worked for the first time for me, and it has many useful utilities, for example. general types of shaders, general matrix functions, etc.

+3
source

I will also vote for GwtGL! It was very easy to write WebGL applications with this shell. I can take full advantage of Java and interact with other, modern, javascript libraries, such as gl-matrix, to get matrix functions. I wrote several posts on how to use GwtGL based on the well-known Learningwebgl.com tutorials here http://gibberfish.net/learning-webgl-lesson-1-with-gwtgl/ .

+3
source

Source: https://habr.com/ru/post/1342543/


All Articles