Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 package org.ros.android.view.visualization;
00018
00019 import javax.microedition.khronos.opengles.GL10;
00020
00024 public class Viewport {
00025
00026 private final int width;
00027 private final int height;
00028
00029 public Viewport(int width, int height) {
00030 this.width = width;
00031 this.height = height;
00032 }
00033
00034 public void apply(GL10 gl) {
00035 gl.glViewport(0, 0, width, height);
00036
00037 gl.glMatrixMode(GL10.GL_PROJECTION);
00038 gl.glLoadIdentity();
00039
00040
00041
00042 gl.glOrthof(-width / 2.0f, width / 2.0f, -height / 2.0f, height / 2.0f, -1e4f, 1e4f);
00043 }
00044
00045 public int getWidth() {
00046 return width;
00047 }
00048
00049 public int getHeight() {
00050 return height;
00051 }
00052 }