Uses of Interface
math.geom2d.domain.Boundary2D

Packages that use Boundary2D
math.geom2d Planar geometry toolbox. 
math.geom2d.circulinear Definition of circulinear shapes and some implementations. 
math.geom2d.conic Definition of various conic curves like circles, ellipses, parabolas and hyperbolas, and their respective arcs. 
math.geom2d.domain Definition of planar domains, and basic implementations. 
math.geom2d.line Implementations of 'linear shapes', i.e. curves which can be embedded into a straight lines, like straight lines, line segments, or rays
math.geom2d.polygon Definitions and implementations of shapes composed several line segments: polylines, rings, polygons. 
 

Uses of Boundary2D in math.geom2d
 

Methods in math.geom2d that return Boundary2D
 Boundary2D Box2D.boundary()
          Returns the boundary of this box.
 

Uses of Boundary2D in math.geom2d.circulinear
 

Subinterfaces of Boundary2D in math.geom2d.circulinear
 interface CircleLine2D
          Tagging interface to be able to consider in a same way circles and lines.
 interface CirculinearBoundary2D
          A Boundary which is composed of Circulinear elements.
 interface CirculinearContour2D
          Tagging interface to gather Continuous and boundary circulinear curves.
 interface CirculinearRing2D
          Interface for circulinear contours which are both bounded and closed.
 

Classes in math.geom2d.circulinear that implement Boundary2D
 class BoundaryPolyCirculinearCurve2D<T extends CirculinearContinuousCurve2D>
          A continuous boundary which is composed of several continuous circulinear curves.
 class CirculinearContourArray2D<T extends CirculinearContour2D>
          A circulinear boundary which is composed of several CirculinearContour2D.
 class GenericCirculinearRing2D
          A basic implementation of a CirculinearRing2D, which is assumed to be always bounded and closed.
 

Uses of Boundary2D in math.geom2d.conic
 

Subinterfaces of Boundary2D in math.geom2d.conic
 interface Conic2D
          Interface for all conic curves: parametric conics, or ellipses, parabolas, and hyperbolas.
 interface EllipseShape2D
          A common interface for Circle2D and Ellipse2D.
 

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
          An Hyperbola, which is represented as a curve set of two boundary curves which are instances of HyperbolaBranch2D.
 class HyperbolaBranch2D
          Branch of an Hyperbola2D.
 class Parabola2D
          A parabola, defined by its vertex, its orientation, and its pedal.
 

Uses of Boundary2D in math.geom2d.domain
 

Subinterfaces of Boundary2D in math.geom2d.domain
 interface Contour2D
          A continuous oriented curve which delimits a connected planar domain.
 interface SmoothContour2D
          Tagging interface to represent in unified way smooth curves that are also contours.
 

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

Methods in math.geom2d.domain that return Boundary2D
 Boundary2D Domain2D.boundary()
          Returns the boundary of the set.
 Boundary2D GenericDomain2D.boundary()
           
 Boundary2D DomainArray2D.boundary()
           
 Boundary2D Boundary2D.reverse()
          Forces the subclasses to return an instance of Boundary2D.
 Boundary2D Boundary2D.transform(AffineTransform2D trans)
          Forces the subclasses to return an instance of Boundary2D.
 

Methods in math.geom2d.domain with parameters of type Boundary2D
static ContourArray2D<Contour2D> Boundaries2D.clipBoundary(Boundary2D boundary, Box2D box)
          Clips a boundary and closes the result curve.
static GenericDomain2D GenericDomain2D.create(Boundary2D boundary)
           
 

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

Uses of Boundary2D in math.geom2d.line
 

Classes in math.geom2d.line that implement Boundary2D
 class StraightLine2D
          Implementation of a straight line.
 

Uses of Boundary2D in math.geom2d.polygon
 

Classes in math.geom2d.polygon that implement Boundary2D
 class LinearRing2D
           A LinearRing2D is a Polyline2D whose last point is connected to the first one.