Java tutorial
//package com.java2s; import android.opengl.Matrix; public class Main { public static void setPerspectiveM(float[] m, int offset, double fovy, double aspect, double zNear, double zFar) { Matrix.setIdentityM(m, offset); double ymax = zNear * Math.tan(fovy * Math.PI / 360.0); double ymin = -ymax; double xmin = ymin * aspect; double xmax = ymax * aspect; Matrix.frustumM(m, offset, (float) xmin, (float) xmax, (float) ymin, (float) ymax, (float) zNear, (float) zFar); } }