Uses of Class
uk.ac.ic.doc.game.Point

Uses of Point in uk.ac.ic.doc.game
 

Methods in uk.ac.ic.doc.game that return Point
 Point Point.clone()
           
 Point RegularPolygon.getPosition()
          Returns the current position of this object.
static Point Point.random()
           
 

Methods in uk.ac.ic.doc.game with parameters of type Point
 void RegularPolygon.draw(java.awt.Graphics2D graphics, Point scale)
          Draws this object on the given graphics context at the given scale.
 void IGameObject.draw(java.awt.Graphics2D graphics, Point scale)
          Draws this object on the given graphics context at the given scale.
 void RegularPolygon.setPosition(Point position)
          Sets the position of this object.
 

Constructors in uk.ac.ic.doc.game with parameters of type Point
RegularPolygon(Point position, double rotation, double size, int sides)
          Constructs a new regular polygon of the given position, rotation and size with the given number of sides.