Home | History | Annotate | Download | only in graphics

Lines Matching defs:grid

44     private Grid mGrid;
47 /** A grid is a topologically rectangular array of vertices.
49 * This grid class is customized for the vertex data required for this
58 private static class Grid {
78 // constructing the grid. Once createBufferObjects() is called
89 public Grid(int w, int h) {
383 private Grid generateWeightedGrid(GL gl) {
389 Grid grid = new Grid(uSteps + 1, vSteps + 1);
401 grid.set(i, j, x, y, z, u, v, w0, w1, 0, 1);
405 grid.createBufferObjects(gl);
406 return grid;