Uses of Class
org.starhope.appius.geometry.Polygon

Packages that use Polygon
org.starhope.appius.game   
org.starhope.appius.geometry   
org.starhope.appius.physica   
 

Uses of Polygon in org.starhope.appius.game
 

Fields in org.starhope.appius.game with type parameters of type Polygon
private  Map<String,Pair<String,Polygon>> Room.exitPlaces
          Places through which one can exit this room into another room
 

Methods in org.starhope.appius.game that return Polygon
 Polygon Room.getExitTo(String roomToward)
          Find a place in the room which exits to a certain other room's moniker
 

Methods in org.starhope.appius.game that return types with arguments of type Polygon
 Map<String,Pair<String,Polygon>> Room.getExits()
           
 

Methods in org.starhope.appius.game with parameters of type Polygon
 Collection<RoomRegion> Room.getRegionsIncluding(Polygon space)
          WRITEME: Document this method brpocock@star-hope.org
 

Uses of Polygon in org.starhope.appius.geometry
 

Fields in org.starhope.appius.geometry declared as Polygon
protected  Polygon Rectangle.polygon
          WRITEME: Document this brpocock@star-hope.org
 

Methods in org.starhope.appius.geometry that return Polygon
 Polygon Polygon.scale(double sizeScalar)
           
 Polygon Polygon.translate(Coord2D coord2d)
           
 Polygon Polygon.translate(double x, double y)
           
 

Methods in org.starhope.appius.geometry with parameters of type Polygon
 boolean Circle.intersectsPoly(Polygon polygon)
           
 boolean Polygon.intersectsPoly(Polygon polygon)
          WRITEME: Document this method brpocock@star-hope.org
 boolean Rectangle.intersectsPoly(Polygon otherPolygon)
           
 boolean PolygonPrimitive.intersectsPoly(Polygon polygon)
          Determines if the polygon intersects a polygon
 

Uses of Polygon in org.starhope.appius.physica
 

Methods in org.starhope.appius.physica that return Polygon
static Polygon Geometry.stringToNewPolygon(String string)
           
 

Methods in org.starhope.appius.physica with parameters of type Polygon
static Coord2D Geometry.getRandomPointWithin(Polygon space)