Example usage for org.lwjgl.opengl GL11 glVertex4d

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

Introduction

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

Prototype

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

Source Link

Document

Double version of #glVertex4f Vertex4f .

Usage

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

License:Open Source License

public static void glVertex4d(double a, double b, double c, double d) {
    GL11.glVertex4d(a, b, c, d);
}