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

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
ModelBuilder.java 267 public Model createCone (float width, float height, float depth, int divisions, final Material material, final long attributes) {
268 return createCone(width, height, depth, divisions, GL20.GL_TRIANGLES, material, attributes);
275 public Model createCone (float width, float height, float depth, int divisions, int primitiveType, final Material material,
277 return createCone(width, height, depth, divisions, primitiveType, material, attributes, 0, 360);
284 public Model createCone (float width, float height, float depth, int divisions, final Material material,
286 return createCone(width, height, depth, divisions, GL20.GL_TRIANGLES, material, attributes, angleFrom, angleTo);
293 public Model createCone (float width, float height, float depth, int divisions, int primitiveType, final Material material,
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
BasicShapesTest.java 61 final Model cone = modelBuilder.createCone(4f, 6f, 4f, 16, material, attributes);

Completed in 35 milliseconds