HomeSort by relevance Sort by last modified time
    Searched refs:scaleZ (Results 1 - 10 of 10) sorted by null

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix4fTest.java 144 float scaleZ = 4.0f;
153 expectedData[8] *= scaleZ;
154 expectedData[9] *= scaleZ;
155 expectedData[10] *= scaleZ;
156 expectedData[11] *= scaleZ;
159 m.scale(scaleX, scaleY, scaleZ);
Matrix3fTest.java 149 float scaleZ = 4.0f;
156 expectedData[6] *= scaleZ;
157 expectedData[7] *= scaleZ;
158 expectedData[8] *= scaleZ;
161 m.scale(scaleX, scaleY, scaleZ);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/
ParticleEffect.java 114 public void scale(float scaleX, float scaleY, float scaleZ){
116 controllers.get(i).scale(scaleX, scaleY, scaleZ);
ParticleController.java 111 public void scale(float scaleX, float scaleY, float scaleZ){
112 this.transform.scale(scaleX, scaleY, scaleZ);
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Matrix4.java 218 * @param scaleZ The Z component of the scaling that is to be used to set this matrix.
221 float quaternionZ, float quaternionW, float scaleX, float scaleY, float scaleZ) {
229 val[M02] = scaleZ * (xz + wy);
234 val[M12] = scaleZ * (yz - wx);
239 val[M22] = scaleZ * (1.0f - (xx + yy));
    [all...]
  /external/skia/include/utils/
SkMatrix44.h 447 SkMScalar scaleZ() const { return fMat[2][2]; }
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Mesh.java     [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/math/
Matrix4.java 235 * @param scaleZ The Z component of the scaling that is to be used to set this matrix.
238 float quaternionZ, float quaternionW, float scaleX, float scaleY, float scaleZ) {
246 val[M02] = scaleZ * (xz + wy);
251 val[M12] = scaleZ * (yz - wx);
256 val[M22] = scaleZ * (1.0f - (xx + yy));
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
ShapeRenderer.java 183 public void scale (float scaleX, float scaleY, float scaleZ) {
184 transformMatrix.scale(scaleX, scaleY, scaleZ);
    [all...]
  /external/skia/src/utils/
SkMatrix44.cpp 63 if (1 != scaleX() || 1 != scaleY() || 1 != scaleZ()) {

Completed in 546 milliseconds