HomeSort by relevance Sort by last modified time
    Searched full:worldvertices (Results 1 - 2 of 2) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Polyline.java 21 private float[] worldVertices;
48 if (!dirty) return worldVertices;
52 if (worldVertices == null || worldVertices.length < localVertices.length) worldVertices = new float[localVertices.length];
54 final float[] worldVertices = this.worldVertices;
83 worldVertices[i] = positionX + x + originX;
84 worldVertices[i + 1] = positionY + y + originY;
86 return worldVertices;
    [all...]
Polygon.java 22 private float[] worldVertices;
56 if (!dirty) return worldVertices;
60 if (worldVertices == null || worldVertices.length != localVertices.length) worldVertices = new float[localVertices.length];
62 final float[] worldVertices = this.worldVertices;
91 worldVertices[i] = positionX + x + originX;
92 worldVertices[i + 1] = positionY + y + originY;
94 return worldVertices;
    [all...]

Completed in 502 milliseconds