Uses of Class
ProGAL.geom2d.Polygon

Packages that use Polygon
ProGAL.geom2d This package contains classes that are all related to two-dimensional geometric concepts. 
ProGAL.geom2d.convexHull   
 

Uses of Polygon in ProGAL.geom2d
 

Subclasses of Polygon in ProGAL.geom2d
 class ConvexPolygon
           
 

Constructors in ProGAL.geom2d with parameters of type Polygon
ConvexPolygon(Polygon pol)
          creates a convex hull of a simple polygon in O(n) time
 

Uses of Polygon in ProGAL.geom2d.convexHull
 

Methods in ProGAL.geom2d.convexHull that return Polygon
static Polygon GrahamScan.getConvexHull(java.util.List<Point> points)
           
static Polygon DivideAndConquer.getConvexHull(java.util.List<Point> points)