Lines Matching refs:geom
416 public boolean applyCoords(Geometry geom) { in applyCoords() argument
417 return applyCoords(geom, 0, geom.getMesh()); in applyCoords()
428 public boolean applyCoords(Geometry geom, int offset, Mesh outMesh) { in applyCoords() argument
429 Mesh inMesh = geom.getMesh(); in applyCoords()
430 geom.computeWorldMatrix(); in applyCoords()
439 Texture tex = getMaterialTexture(geom, "DiffuseMap"); in applyCoords()
441 tex = getMaterialTexture(geom, "ColorMap"); in applyCoords()
493 Geometry geom = new Geometry(); in makeAtlasBatch() local
499 geom.setMesh(mesh); in makeAtlasBatch()
517 geom.setMaterial(mat); in makeAtlasBatch()
518 return geom; in makeAtlasBatch()
524 for (Geometry geom : geometries) { in applyAtlasCoords()
525 Mesh inMesh = geom.getMesh(); in applyAtlasCoords()
526 geom.computeWorldMatrix(); in applyAtlasCoords()
537 atlas.applyCoords(geom, globalVertIndex, outMesh); in applyAtlasCoords()