Lines Matching refs:Vector3f
6 import com.jme3.math.Vector3f;
43 Vector3f[] vertices = new Vector3f[8]; in simpleInitApp()
44 vertices[0] = new Vector3f(0, 0, 0); in simpleInitApp()
45 vertices[1] = new Vector3f(3, 0, 0); in simpleInitApp()
46 vertices[2] = new Vector3f(0, 3, 0); in simpleInitApp()
47 vertices[3] = new Vector3f(3, 3, 0); in simpleInitApp()
49 vertices[4] = new Vector3f(3, 0, 0); in simpleInitApp()
50 vertices[5] = new Vector3f(6, 0, 0); in simpleInitApp()
51 vertices[6] = new Vector3f(3, 3, 0); in simpleInitApp()
52 vertices[7] = new Vector3f(6, 3, 0); in simpleInitApp()
54 Vector3f[] texCoord = new Vector3f[8]; in simpleInitApp()
55 texCoord[0] = new Vector3f(0, 0, 0); in simpleInitApp()
56 texCoord[1] = new Vector3f(1, 0, 0); in simpleInitApp()
57 texCoord[2] = new Vector3f(0, 1, 0); in simpleInitApp()
58 texCoord[3] = new Vector3f(1, 1, 0); in simpleInitApp()
60 texCoord[4] = new Vector3f(0, 0, 1); in simpleInitApp()
61 texCoord[5] = new Vector3f(1, 0, 1); in simpleInitApp()
62 texCoord[6] = new Vector3f(0, 1, 1); in simpleInitApp()
63 texCoord[7] = new Vector3f(1, 1, 1); in simpleInitApp()