Example usage for org.eclipse.swt.opengl GL glTranslatef

List of usage examples for org.eclipse.swt.opengl GL glTranslatef

Introduction

In this page you can find the example usage for org.eclipse.swt.opengl GL glTranslatef.

Prototype

public static native void glTranslatef(float x, float y, float z);

Source Link

Usage

From source file:org.eclipse.swt.snippets.Snippet174.java

static void render() {
    GL.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
    GL.glLoadIdentity();/*w  ww  .  ja va2 s.  c om*/
    GL.glTranslatef(0.0f, 0.0f, -6.0f);
    GL.glBegin(GL.GL_QUADS);
    GL.glVertex3f(-1.0f, 1.0f, 0.0f);
    GL.glVertex3f(1.0f, 1.0f, 0.0f);
    GL.glVertex3f(1.0f, -1.0f, 0.0f);
    GL.glVertex3f(-1.0f, -1.0f, 0.0f);
    GL.glEnd();
}