Example usage for org.lwjgl.opengl GL11 glMapGrid2d

List of usage examples for org.lwjgl.opengl GL11 glMapGrid2d

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL11 glMapGrid2d.

Prototype

public static native void glMapGrid2d(@NativeType("GLint") int un, @NativeType("GLdouble") double u1,
        @NativeType("GLdouble") double u2, @NativeType("GLint") int vn, @NativeType("GLdouble") double v1,
        @NativeType("GLdouble") double v2);

Source Link

Document

Double version of #glMapGrid2f MapGrid2f .

Usage

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

License:Open Source License

public static void glMapGrid2d(int a, double b, double c, int d, double e, double f) {
    GL11.glMapGrid2d(a, b, c, d, e, f);
}