Example usage for org.lwjgl.opengl GL14 glWindowPos3d

List of usage examples for org.lwjgl.opengl GL14 glWindowPos3d

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL14 glWindowPos3d.

Prototype

public static native void glWindowPos3d(@NativeType("GLdouble") double x, @NativeType("GLdouble") double y,
        @NativeType("GLdouble") double z);

Source Link

Document

Double version of #glWindowPos3i WindowPos3i .

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glWindowPos3d(double a, double b, double c) {
    GL14.glWindowPos3d(a, b, c);
}