Home | History | Annotate | Download | only in media

Lines Matching full:grid

29  * modified from the original Grid.java (found in the SpriteText package in the
66 GridQuad grid = new GridQuad(generateOrientedQuads);
67 grid.mWidth = width;
68 grid.mHeight = height;
69 grid.mAnimWidth = width;
70 grid.mAnimHeight = height;
71 grid.mDefaultAspectRatio = width / height;
77 grid.set(0, 0, -widthBy2 + xOffset, -heightBy2 + yOffset, 0.0f, u, v);
78 grid.set(1, 0, widthBy2 + xOffset, -heightBy2 + yOffset, 0.0f, 0.0f, v);
79 grid.set(0, 1, -widthBy2 + xOffset, heightBy2 + yOffset, 0.0f, u, 0.0f);
80 grid.set(1, 1, widthBy2 + xOffset, heightBy2 + yOffset, 0.0f, 0.0f, 0.0f);
83 grid.set(0, 0, -widthBy2 + xOffset, -heightBy2 + yOffset, 0.0f, u, v, true, i);
84 grid.set(1, 0, widthBy2 + xOffset, -heightBy2 + yOffset, 0.0f, 0.0f, v, true, i);
85 grid.set(0, 1, -widthBy2 + xOffset, heightBy2 + yOffset, 0.0f, u, 0.0f, true, i);
86 grid.set(1, 1, widthBy2 + xOffset, heightBy2 + yOffset, 0.0f, 0.0f, 0.0f, true, i);
89 grid.mU = uExtents;
90 grid.mV = uExtents;
91 return grid;