Android examples for android.opengl:OpenGL
Convert height to openGL height
//package com.book2s; public class Main { /**//w w w . j a va 2 s.com * Convert height to openGL height * * @param height * @return Height in openGL */ public static float toGLHeight(float height, float screenHeight) { return 2.0f * (height / screenHeight); } }