Searched defs:centerZ (Results 1 - 12 of 12) sorted by relevance

/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/shapebuilders/
H A DEllipseShapeBuilder.java30 public static void build (MeshPartBuilder builder, float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
32 build(builder, radius, divisions, centerX, centerY, centerZ, normalX, normalY, normalZ, 0f, 360f);
48 public static void build (MeshPartBuilder builder, float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
50 build(builder, radius, divisions, centerX, centerY, centerZ, normalX, normalY, normalZ, tangentX, tangentY, tangentZ, binormalX,
55 public static void build (MeshPartBuilder builder, float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
57 build(builder, radius * 2f, radius * 2f, divisions, centerX, centerY, centerZ, normalX, normalY, normalZ, angleFrom, angleTo);
73 public static void build (MeshPartBuilder builder, float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
76 build(builder, radius * 2, radius * 2, 0, 0, divisions, centerX, centerY, centerZ, normalX, normalY, normalZ, tangentX, tangentY,
82 float centerZ, float normalX, float normalY, float normalZ) {
83 build(builder, width, height, divisions, centerX, centerY, centerZ, normal
81 build(MeshPartBuilder builder, float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ) argument
100 build(MeshPartBuilder builder, float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float tangentX, float tangentY, float tangentZ, float binormalX, float binormalY, float binormalZ) argument
108 build(MeshPartBuilder builder, float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float angleFrom, float angleTo) argument
127 build(MeshPartBuilder builder, float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float tangentX, float tangentY, float tangentZ, float binormalX, float binormalY, float binormalZ, float angleFrom, float angleTo) argument
135 build(MeshPartBuilder builder, float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float angleFrom, float angleTo) argument
147 build(MeshPartBuilder builder, float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ) argument
161 build(MeshPartBuilder builder, float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float tangentX, float tangentY, float tangentZ, float binormalX, float binormalY, float binormalZ, float angleFrom, float angleTo) argument
[all...]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/
H A DMesh.java688 * @param centerZ The Z coordinate of the center of the bounding sphere
692 public float calculateRadiusSquared (final float centerX, final float centerY, final float centerZ, int offset, int count, argument
712 final float r = tmpV.sub(centerX, centerY, centerZ).len2();
721 final float r = tmpV.sub(centerX, centerY, centerZ).len2();
730 final float r = tmpV.sub(centerX, centerY, centerZ).len2();
741 * @param centerZ The Z coordinate of the center of the bounding sphere
745 public float calculateRadius (final float centerX, final float centerY, final float centerZ, int offset, int count, argument
747 return (float)Math.sqrt(calculateRadiusSquared(centerX, centerY, centerZ, offset, count, transform));
762 * @param centerZ The Z coordinate of the center of the bounding sphere
766 public float calculateRadius (final float centerX, final float centerY, final float centerZ, in argument
784 calculateRadius(final float centerX, final float centerY, final float centerZ) argument
[all...]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
H A DMeshBuilder.java853 public void circle (float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
855 EllipseShapeBuilder.build(this, radius, divisions, centerX, centerY, centerZ, normalX, normalY, normalZ);
873 public void circle (float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
875 EllipseShapeBuilder.build(this, radius, divisions, centerX, centerY, centerZ, normalX, normalY, normalZ, tangentX,
881 public void circle (float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
884 .build(this, radius, divisions, centerX, centerY, centerZ, normalX, normalY, normalZ, angleFrom, angleTo);
903 public void circle (float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
906 EllipseShapeBuilder.build(this, radius, divisions, centerX, centerY, centerZ, normalX, normalY, normalZ, tangentX,
912 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, argument
914 EllipseShapeBuilder.build(this, width, height, divisions, centerX, centerY, centerZ, normal
932 ellipse(float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float tangentX, float tangentY, float tangentZ, float binormalX, float binormalY, float binormalZ) argument
941 ellipse(float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float angleFrom, float angleTo) argument
963 ellipse(float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float tangentX, float tangentY, float tangentZ, float binormalX, float binormalY, float binormalZ, float angleFrom, float angleTo) argument
979 ellipse(float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ) argument
987 ellipse(float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float angleFrom, float angleTo) argument
995 ellipse(float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float tangentX, float tangentY, float tangentZ, float binormalX, float binormalY, float binormalZ, float angleFrom, float angleTo) argument
[all...]
H A DMeshPartBuilder.java330 public void circle (float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
344 public void circle (float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
349 public void circle (float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
363 public void circle (float radius, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, argument
369 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, argument
383 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, argument
389 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, argument
404 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, argument
411 float centerY, float centerZ, float normalX, float normalY, float normalZ, float tangentX, float tangentY, float tangentZ,
417 float centerY, float centerZ, floa
410 ellipse(float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float tangentX, float tangentY, float tangentZ, float binormalX, float binormalY, float binormalZ, float angleFrom, float angleTo) argument
416 ellipse(float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ, float angleFrom, float angleTo) argument
421 ellipse(float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, float centerY, float centerZ, float normalX, float normalY, float normalZ) argument
[all...]
/external/libgdx/backends/gdx-backend-android/libs/
H A Dandroid-4.4.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 394 milliseconds