Uses of Class
break_out.model.Position
-
Packages that use Position Package Description break_out break_out.model -
-
Uses of Position in break_out
Fields in break_out declared as Position Modifier and Type Field Description static Position
Constants. SCOREBOARD_MIDPOINT
The position for the scoreboards midpoint (bottom center) -
Uses of Position in break_out.model
Fields in break_out.model declared as Position Modifier and Type Field Description private Position
Ball. position
The balls position on the playgroundprivate Position
Paddle. position
The paddles position on the playgroundprivate Position
Stone. position
The stones position on the playgroundMethods in break_out.model that return Position Modifier and Type Method Description Position
Ball. getPosition()
The getter for the balls positionPosition
IBall. getPosition()
Position
IPaddle. getPosition()
Position
IStone. getPosition()
Position
Paddle. getPosition()
The getter for the paddles positionPosition
Stone. getPosition()
The getter for the stones positionMethods in break_out.model with parameters of type Position Modifier and Type Method Description void
IPaddle. setPosition(Position position)
void
IStone. setPosition(Position position)
void
Paddle. setPosition(Position position)
The setter for the paddles positionvoid
Stone. setPosition(Position position)
The setter for the stones positionConstructors in break_out.model with parameters of type Position Constructor Description Paddle(Position position)
The constructor of a paddleStone(int type, Position position)
The constructor of a stoneVector2D(Position start, Position end)
This constructor creates a new vector based on the given positions start and end.
-