Searched refs:GLFace (Results 1 – 3 of 3) sorted by relevance
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
D | Cube.java | 35 addFace(new GLFace(leftBottomBack, leftBottomFront, rightBottomFront, rightBottomBack)); in Cube() 37 addFace(new GLFace(leftBottomFront, leftTopFront, rightTopFront, rightBottomFront)); in Cube() 39 addFace(new GLFace(leftBottomBack, leftTopBack, leftTopFront, leftBottomFront)); in Cube() 41 addFace(new GLFace(rightBottomBack, rightBottomFront, rightTopFront, rightTopBack)); in Cube() 43 addFace(new GLFace(leftBottomBack, rightBottomBack, rightTopBack, leftTopBack)); in Cube() 45 addFace(new GLFace(leftTopBack, rightTopBack, rightTopFront, leftTopFront)); in Cube()
|
D | GLShape.java | 29 public void addFace(GLFace face) { in addFace() 38 Iterator<GLFace> iter = mFaceList.iterator(); in putIndices() 40 GLFace face = iter.next(); in putIndices() 47 Iterator<GLFace> iter = mFaceList.iterator(); in getIndexCount() 49 GLFace face = iter.next(); in getIndexCount() 98 protected ArrayList<GLFace> mFaceList = new ArrayList<GLFace>();
|
D | GLFace.java | 24 public class GLFace { class 26 public GLFace() { in GLFace() method in GLFace 31 public GLFace(GLVertex v1, GLVertex v2, GLVertex v3) { in GLFace() method in GLFace 37 public GLFace(GLVertex v1, GLVertex v2, GLVertex v3, GLVertex v4) { in GLFace() method in GLFace
|