Uses of Interface
math.geom2d.line.LinearElement2D

Packages that use LinearElement2D
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 LinearElement2D in math.geom2d.line
 

Classes in math.geom2d.line that implement LinearElement2D
 class AbstractLine2D
           Base class for straight curves, such as straight lines, rays, or edges.
 class InvertedRay2D
          Inverted ray is defined from an origin and a direction vector.
 class Line2D
          Line object defined from 2 points.
 class LineArc2D
          LineArc2D is a generic class to represent edges, straight lines, and rays.
 class LineSegment2D
          Line segment, defined as the set of points located between the two end points.
 class Ray2D
          Ray, or half-line, defined from an origin and a direction vector.
 class StraightLine2D
          Implementation of a straight line.
 

Methods in math.geom2d.line that return LinearElement2D
 LinearElement2D LinearElement2D.subCurve(double y0, double t1)
           
 LinearElement2D LinearElement2D.transform(AffineTransform2D trans)
           
 

Methods in math.geom2d.line that return types with arguments of type LinearElement2D
 CurveSet2D<? extends LinearElement2D> LinearElement2D.clip(Box2D box)