Example usage for com.badlogic.gdx.math.collision BoundingBox toString

List of usage examples for com.badlogic.gdx.math.collision BoundingBox toString

Introduction

In this page you can find the example usage for com.badlogic.gdx.math.collision BoundingBox toString.

Prototype

@Override
    public String toString() 

Source Link

Usage

From source file:scratchpad.LoadModelsTest.java

License:Apache License

private void doneLoading() {
    Model ship = assets.get(FN, Model.class);
    ModelInstance shipInstance = new ModelInstance(ship);
    BoundingBox b = new BoundingBox();
    shipInstance.calculateBoundingBox(b);
    Gdx.app.debug("kbn", String.format("instance bounding box: %s", b.toString()));
    instances.add(shipInstance);/*from w w w . ja  va  2  s  .  c om*/
    loading = false;
}