Uses of Class
math.geom2d.polygon.SimplePolygon2D

Packages that use SimplePolygon2D
math.geom2d.polygon Definitions and implementations of shapes composed several line segments: polylines, rings, polygons. 
 

Uses of SimplePolygon2D in math.geom2d.polygon
 

Methods in math.geom2d.polygon that return SimplePolygon2D
 SimplePolygon2D SimplePolygon2D.clone()
           
 SimplePolygon2D SimplePolygon2D.complement()
          Returns the polygon created by reversing the order of the vertices.
static SimplePolygon2D SimplePolygon2D.create(java.util.Collection<? extends Point2D> points)
          Static factory for creating a new SimplePolygon2D from a collection of points.
static SimplePolygon2D SimplePolygon2D.create(Point2D... points)
          Static factory for creating a new SimplePolygon2D from an array of points.
static SimplePolygon2D Polygons2D.createCenteredRectangle(Point2D center, double length, double width)
          Creates a new polygon representing a rectangle centered around a point.
static SimplePolygon2D Polygons2D.createOrientedRectangle(Point2D center, double length, double width, double theta)
          Creates a new polygon representing an oriented rectangle centered around a point.
static SimplePolygon2D Polygons2D.createRectangle(double x1, double y1, double x2, double y2)
          Creates a new polygon representing a rectangle with edges parallel to the main directions, and having the two specified opposite corners.
static SimplePolygon2D Polygons2D.createRectangle(Point2D p1, Point2D p2)
          Creates a new polygon representing a rectangle with edges parallel to the main directions, and having the two specified opposite corners.
 SimplePolygon2D HRectangle2D.transform(AffineTransform2D trans)
          Deprecated. Return the new Polygon created by an affine transform of this polygon.
 SimplePolygon2D Rectangle2D.transform(AffineTransform2D trans)
          Returns the new Polygon created by an affine transform of this polygon.
 SimplePolygon2D SimplePolygon2D.transform(AffineTransform2D trans)
          Returns the new Polygon created by an affine transform of this polygon.
 

Constructors in math.geom2d.polygon with parameters of type SimplePolygon2D
MultiPolygon2D(SimplePolygon2D polygon)