Uses of Interface
com.b3dgs.lionengine.geometry.Point2D

Packages that use Point2D
com.b3dgs.lionengine   
com.b3dgs.lionengine.game.map   
com.b3dgs.lionengine.geometry.impl   
com.b3dgs.lionengine.utility   
 

Uses of Point2D in com.b3dgs.lionengine
 

Methods in com.b3dgs.lionengine that return Point2D
 Point2D Geometry.createPoint2D(int x, int y)
          Create integer coordinates.
 

Uses of Point2D in com.b3dgs.lionengine.game.map
 

Methods in com.b3dgs.lionengine.game.map that return Point2D
 Point2D AbstractPathMap.getFreePlaceArround(int tx, int ty, int w, int h, int id, int radius)
           
 Point2D PathBasedMap.getFreePlaceArround(int tx, int ty, int w, int h, int id, int radius)
          Search a free area from this area.
 

Methods in com.b3dgs.lionengine.game.map that return types with arguments of type Point2D
 java.util.List<Point2D> AbstractPathMap.getAllFreePlaceArround(int tx, int ty, int w, int h, int id, int radius)
           
 java.util.List<Point2D> PathBasedMap.getAllFreePlaceArround(int tx, int ty, int w, int h, int id, int radius)
          Search list of free area from this area.
 

Uses of Point2D in com.b3dgs.lionengine.geometry.impl
 

Methods in com.b3dgs.lionengine.geometry.impl that return Point2D
 Point2D GeometryFactory.createPoint2D(int x, int y)
           
 

Uses of Point2D in com.b3dgs.lionengine.utility
 

Methods in com.b3dgs.lionengine.utility that return Point2D
static Point2D Maths.intersection(java.awt.geom.Line2D l1, java.awt.geom.Line2D l2)
          Get the intersection point of two lines.