Uses of Interface
math.geom2d.domain.SmoothContour2D

Packages that use SmoothContour2D
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
 

Uses of SmoothContour2D in math.geom2d.circulinear
 

Subinterfaces of SmoothContour2D in math.geom2d.circulinear
 interface CircleLine2D
          Tagging interface to be able to consider in a same way circles and lines.
 

Uses of SmoothContour2D in math.geom2d.conic
 

Subinterfaces of SmoothContour2D in math.geom2d.conic
 interface EllipseShape2D
          A common interface for Circle2D and Ellipse2D.
 

Classes in math.geom2d.conic that implement SmoothContour2D
 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 HyperbolaBranch2D
          Branch of an Hyperbola2D.
 

Uses of SmoothContour2D in math.geom2d.domain
 

Methods in math.geom2d.domain that return SmoothContour2D
 SmoothContour2D SmoothContour2D.reverse()
          Reverses the contour, and returns an instance of SmoothContour2D.
 SmoothContour2D SmoothContour2D.transform(AffineTransform2D trans)
          Transforms the contour, and returns an instance of SmoothContour2D.
 

Uses of SmoothContour2D in math.geom2d.line
 

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