Uses of Interface
math.geom2d.point.PointSet2D

Packages that use PointSet2D
math.geom2d Planar geometry toolbox. 
math.geom2d.circulinear.buffer Computation of buffer for circulinear shapes. 
math.geom2d.grid Infinite grids with various geometries (square, triangle). 
math.geom2d.point Data structures for point sets. 
 

Uses of PointSet2D in math.geom2d
 

Methods in math.geom2d that return PointSet2D
 PointSet2D Point2D.clip(Box2D box)
          Returns a PointSet2D, containing 0 or 1 point, depending on whether the point lies inside the specified box.
 

Uses of PointSet2D in math.geom2d.circulinear.buffer
 

Methods in math.geom2d.circulinear.buffer with parameters of type PointSet2D
 CirculinearDomain2D BufferCalculator.computeBuffer(PointSet2D set, double dist)
          Compute buffer of a point set.
 

Uses of PointSet2D in math.geom2d.grid
 

Methods in math.geom2d.grid that return PointSet2D
 PointSet2D Grid2D.getVertices(Box2D box)
           
 PointSet2D TriangleGrid2D.getVertices(Box2D box)
           
 PointSet2D SquareGrid2D.getVertices(Box2D box)
           
 

Uses of PointSet2D in math.geom2d.point
 

Classes in math.geom2d.point that implement PointSet2D
 class PointArray2D
          Represent the union of a finite number of Point2D.
 

Methods in math.geom2d.point that return PointSet2D
 PointSet2D PointSet2D.clip(Box2D box)
          Returns a new point set containing only points located within the box.
 PointSet2D PointSet2D.transform(AffineTransform2D trans)
          Transforms the point set by returning a new point set containing each transformed point.