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.shape;
00018
00019 import org.ros.android.view.visualization.Camera;
00020
00021 import javax.microedition.khronos.opengles.GL10;
00022
00031 public class PoseShape extends GoalShape {
00032
00033 private final Camera camera;
00034
00035 public PoseShape(Camera camera) {
00036 this.camera = camera;
00037 }
00038
00039 @Override
00040 protected void scale(GL10 gl) {
00041
00042 gl.glScalef(250.0f, 250.0f, 1.0f);
00043
00044 gl.glScalef(1 / (float) camera.getZoom(), 1 / (float) camera.getZoom(), 1.0f);
00045 }
00046 }