- 授权协议: BSD
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://jogamp.org/jogl/www/
- 软件文档: http://jogamp.org/wiki/index.php/Jogl_Tutorial
- 官方下载: http://jogamp.org/
软件介绍
JOGL 是Java对于OpenGl的绑定(Java Bindings for OpenGL).
示例代码:
import net.java.games.jogl.*;
public class HelloWorld {
public static void main (String args[]) {
try {
System.loadLibrary("jogl");
System.out.println(
"Hello World! (The native libraries are installed.)"
);
GLCapabilities caps = new GLCapabilities();
System.out.println(
"Hello JOGL! (The jar appears to be available.)"
);
} catch (Exception e) {
System.out.println(e);
}
}
}
Head Rush Ajax
Brett McLaughlin、Eric Freeman、Elisabeth Freeman / O'Reilly Media, Inc. / 2006-03-01 / USD 34.99
Ajax, or Asynchronous JavaScript and XML, is a term describing the latest rage in web development. Ajax is used to create interactive web applications with XML-based web services, and using JavaScript......一起来看看 《Head Rush Ajax》 这本书的介绍吧!
