Uses of Interface
math.geom2d.curve.Boundary2D

Packages that use Boundary2D
math.geom2d Planar geometry toolbox. 
math.geom2d.conic Conic curves like circles, ellipses, parabolas and hyperbolas Contains definition of various conic curves. 
math.geom2d.curve Curves interface hierarchy, and implementations of curve sets and various poly-curves. 
math.geom2d.line Straight curves : straight lines, line segments, rays, and polylines. 
math.geom2d.polygon Domains of the plane whose boundary is straight, like polygons, half-plane, wedge... 
 

Uses of Boundary2D in math.geom2d
 

Methods in math.geom2d that return Boundary2D
 Boundary2D Box2D.getBoundary()
           
 

Methods in math.geom2d with parameters of type Boundary2D
 BoundarySet2D<ContinuousBoundary2D> Box2D.clipBoundary(Boundary2D boundary)
          Clips a boundary and closes the result curve.
 

Uses of Boundary2D in math.geom2d.conic
 

Classes in math.geom2d.conic that implement Boundary2D
 class Circle2D
          A circle in the plane, defined as the set of points located at an equal distance from the circle center.
 class Ellipse2D
          An ellipse in the plane.
 class Hyperbola2D
          Superclass for all linear and pieces smooth curves : polylines, conics, lines ...
 class HyperbolaBranch2D
          Branch of an Hyperbola2D.
 class Parabola2D
          A parabola, defined by its vertex, its orientation, and its pedal.
 

Methods in math.geom2d.conic that return Boundary2D
 Boundary2D Disc2D.getBoundary()
           
 

Uses of Boundary2D in math.geom2d.curve
 

Subinterfaces of Boundary2D in math.geom2d.curve
 interface ContinuousBoundary2D
          a continuous boundary is a continuous oriented curve which delimits a planar domain.
 

Classes in math.geom2d.curve that implement Boundary2D
 class BoundaryPolyCurve2D<T extends ContinuousOrientedCurve2D>
          A single continuous oriented curve, which defines the boundary of a planar domain.
 class BoundarySet2D<T extends ContinuousBoundary2D>
          A BoundarySet2D is a set of continuous oriented curves.
 

Fields in math.geom2d.curve declared as Boundary2D
protected  Boundary2D GenericDomain2D.boundary
           
 

Methods in math.geom2d.curve that return Boundary2D
 Boundary2D GenericDomain2D.getBoundary()
           
 Boundary2D Domain2D.getBoundary()
          returns the boundary of the set.
 Boundary2D Boundary2D.getReverseCurve()
           
 Boundary2D Boundary2D.transform(AffineTransform2D trans)
           
 

Constructors in math.geom2d.curve with parameters of type Boundary2D
GenericDomain2D(Boundary2D boundary)
           
 

Uses of Boundary2D in math.geom2d.line
 

Classes in math.geom2d.line that implement Boundary2D
 class ClosedPolyline2D
          Extends Polyline2D, by considering the last point is connected to the first one.
 class StraightLine2D
          Representation of straigth lines.
 

Uses of Boundary2D in math.geom2d.polygon
 

Methods in math.geom2d.polygon that return Boundary2D
 Boundary2D Polygon2D.getBoundary()
          Returns a closed polyline, which encloses the polygon.
 Boundary2D HRectangle2D.getBoundary()
           
 Boundary2D HalfPlane2D.getBoundary()
          Returns the straight line that defines the limit of this half-plane.
 Boundary2D Rectangle2D.getBoundary()