Uses of Class
vooga.gameEngine.core.Dimension

Packages that use Dimension
games.RobotUnicornAttack.controller   
games.RobotUnicornAttack.items   
testing.gameEngine.cameraTesting   
testing.gameEngine.WormsDemo.items   
vooga.gameEngine.controller   
vooga.gameEngine.event   
vooga.gameEngine.graphics   
vooga.gameEngine.item   
 

Uses of Dimension in games.RobotUnicornAttack.controller
 

Constructors in games.RobotUnicornAttack.controller with parameters of type Dimension
UnicornCamera(Position p, Dimension size)
           
 

Uses of Dimension in games.RobotUnicornAttack.items
 

Constructors in games.RobotUnicornAttack.items with parameters of type Dimension
Platform(java.net.URL resource, Dimension dimension, Position position)
           
 

Uses of Dimension in testing.gameEngine.cameraTesting
 

Constructors in testing.gameEngine.cameraTesting with parameters of type Dimension
CameraRectangle(Position p, Dimension d, java.awt.Color c)
           
KeyMovingCameraController(Position p, Dimension viewableArea)
           
 

Uses of Dimension in testing.gameEngine.WormsDemo.items
 

Constructors in testing.gameEngine.WormsDemo.items with parameters of type Dimension
Explosion(Position p, Dimension d)
           
Missle(Position p, Dimension d)
           
MissleLauncher(Position p, Dimension d, Position wormPosition)
           
Projectile(Position p, Dimension d)
           
TerrainPiece(java.net.URL u, Position p, Dimension d)
           
Weapon(Position p, Dimension d, Position wormPosition)
           
Worm(Position p, Dimension d)
           
WormsCameraController(Position p, Dimension viewableArea, Dimension totalArea)
           
 

Uses of Dimension in vooga.gameEngine.controller
 

Methods in vooga.gameEngine.controller that return Dimension
 Dimension CameraController.getSize()
           
 Dimension CameraController.getViewableArea()
          Deprecated. 
 

Methods in vooga.gameEngine.controller with parameters of type Dimension
 void CameraController.setSize(Dimension d)
           
 void CameraController.setViewableArea(Dimension viewableArea)
          Deprecated. 
 

Constructors in vooga.gameEngine.controller with parameters of type Dimension
CameraController(Position p, Dimension size)
          Creates a new CameraController with the top left corner at a Position p and with a Dimension, viewableArea, representing the viewable area in terms of the game coordinate system.
CameraController(Position p, Dimension size, Rotation2D rotation)
          Creates a new CameraController with the top left corner at a Position p and with a Dimension, viewableArea, representing the viewable area in terms of the game coordinate system.
 

Uses of Dimension in vooga.gameEngine.event
 

Methods in vooga.gameEngine.event that return Dimension
 Dimension SizeChangedEvent.getSize()
          Gives the Dimension associated with this SizeChangedEvent.
 

Constructors in vooga.gameEngine.event with parameters of type Dimension
SizeChangedEvent(java.lang.Object source, Dimension d)
           
 

Uses of Dimension in vooga.gameEngine.graphics
 

Methods in vooga.gameEngine.graphics that return Dimension
 Dimension Texture.getSize()
          Method for getting the size of this texture in terms of the game's coordinate system.
 

Methods in vooga.gameEngine.graphics with parameters of type Dimension
 void Texture.setSize(Dimension d)
          Sets the specified Dimension, d, as this Texture's size.
 void TextTexture.setSize(Dimension d)
           
 

Constructors in vooga.gameEngine.graphics with parameters of type Dimension
ImageTexture(java.net.URL url, Dimension d, Position p)
          Creates a new ImageTexture from a url, dimension, and position.
TextTexture(java.lang.String text, java.awt.Font f, java.awt.Color c, Dimension d, Position p)
          Creates a new TextTexture with given parameters.
 

Uses of Dimension in vooga.gameEngine.item
 

Methods in vooga.gameEngine.item that return Dimension
 Dimension Tangible.getSize()
          Getter method for the current dimension of this item in the coordinate system used by the game.
 Dimension GameItem.getSize()
           
 

Methods in vooga.gameEngine.item with parameters of type Dimension
 void Tangible.setSize(Dimension d)
          Changes this object's size to a specified Dimension.
 void GameItem.setSize(Dimension d)