Uses of Class
gizmoball.board.Ball

Packages that use Ball
gizmoball.board   
 

Uses of Ball in gizmoball.board
 

Methods in gizmoball.board that return Ball
 Ball GizmoBoard.addBall(Ball b)
          adds a given ball to the board.
 Ball GizmoBoard.addBall(java.lang.String name, java.awt.Color color, Vect center, Vect velocity, double radius)
          adds a ball to the board
 Ball GizmoBoard.addGhostBall(java.lang.String name, java.awt.Color color, Vect center, Vect velocity, double radius)
          adds a ghost ball to the board.
 

Methods in gizmoball.board that return types with arguments of type Ball
 java.util.List<Ball> GizmoBoard.getBalls()
          returns a list of balls that are on the board.
 java.util.List<Ball> Absorber.getBalls()
          returns the balls that the absorbers have.
 

Methods in gizmoball.board with parameters of type Ball
 void Absorber.absorbBall(Ball b)
          absorbs a ball
 Ball GizmoBoard.addBall(Ball b)
          adds a given ball to the board.
 void GizmoBoard.deleteBall(Ball bl)
          removes a ball from the board.
 void Gizmo.triggerConnections(Ball b)
          triggers all the gizmos that are connected to this gizmo.
 void Absorber.triggerConnections(Ball b)
          overrides the triggerConnection of Gizmo