package engine; public class Primitive { public static float[] triangle = new float[] { 0.0f, 0.5f, 0.0f, 0.5f, -0.5f, 0.0f, -0.5f, -0.5f, 0.0f, }; public static byte[] triangle_indices = new byte[]{ 0, 1, 2 }; public static float[] rectangle = new float[] { 0.5f, 0.5f, 0.0f, // top right 0.5f, -0.5f, 0.0f, // bottom right -0.5f, -0.5f, 0.0f, // bottom left -0.5f, 0.5f, 0.0f // top left }; public static byte[] rectangle_indices = new byte[] { 0, 1, 3, 1, 2, 3 }; }