Package ponkOut.graphics

Examples of ponkOut.graphics.SolidBallGO


  protected static final float MAX_RADIUS = 0.5f;

  public Ball(Material material, GraphicsObjectsManager goManager) {
    radius = PonkOut.COMMON_RADIUS;
    EntityManager.getInstance().addBall(this);
    graphicsObject = new SolidBallGO(this, material, goManager);
  }
View Full Code Here


      radius = MAX_RADIUS;
    }

    this.radius = radius;
    EntityManager.getInstance().addBall(this);
    graphicsObject = new SolidBallGO(this, material, goManager);
  }
View Full Code Here

TOP

Related Classes of ponkOut.graphics.SolidBallGO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.