Uses of Class
math.geom2d.line.StraightLine2D

Packages that use StraightLine2D
math.geom2d Planar geometry toolbox. 
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... 
math.geom2d.transform Hieararchy of planar transforms, and implementation of common transforms like rotations, translations, reflections or scalings. 
 

Uses of StraightLine2D in math.geom2d
 

Methods in math.geom2d that return types with arguments of type StraightLine2D
 java.util.Collection<StraightLine2D> Box2D.getClippingLines()
          Returns the set of lines defining half-planes which all contains the box.
 

Uses of StraightLine2D in math.geom2d.line
 

Methods in math.geom2d.line that return StraightLine2D
static StraightLine2D StraightLine2D.createCartesianLine2D(double a, double b, double c)
          Return a new Straight line, with the given coefficient of the cartesian equation (a*x + b*y + c = 0).
static StraightLine2D StraightLine2D.createMedian2D(java.awt.geom.Point2D p1, java.awt.geom.Point2D p2)
          *
static StraightLine2D StraightLine2D.createOrthogonalLine2D(StraightObject2D line, Point2D point)
          Return a new Straight line, parallel to another straigth object (ray, straight line or edge), and going through the given point.
static StraightLine2D StraightLine2D.createParallelLine2D(StraightObject2D line, double d)
          Return a new Straight line, parallel to another straight object (ray, straight line or edge), and going through the given point.
static StraightLine2D StraightLine2D.createParallelLine2D(StraightObject2D line, java.awt.geom.Point2D point)
          Return a new Straight line, parallel to another straight object (ray, straight line or edge), and going through the given point.
static StraightLine2D StraightLine2D.createStraightLine2D(java.awt.geom.Point2D point, double dx, double dy)
          Return a new Straight line going through the given point, and with the specified direction vector.
static StraightLine2D StraightLine2D.createStraightLine2D(java.awt.geom.Point2D p1, java.awt.geom.Point2D p2)
           
 StraightLine2D LineSegment2D.getMedian()
          Return the median of the edge, that is the locus of points located at equal distance of each vertex.
static StraightLine2D LineSegment2D.getMedian(LineSegment2D edge)
           
 StraightLine2D StraightLine2D.getParallel(double d)
          Return the parallel line located at a distance d.
 StraightLine2D LineObject2D.getParallel(Point2D point)
          Create a straight line parallel to this object, and going through the given point.
 StraightLine2D StraightLine2D.getParallel(java.awt.geom.Point2D point)
          Return a new Straight line, parallel to another straigth object (ray, straight line or edge), and going through the given point.
 StraightLine2D StraightObject2D.getParallel(Point2D point)
          Create a straight line parallel to this object, and going through the given point.
 StraightLine2D LineObject2D.getPerpendicular(Point2D point)
          Create a straight line perpendicular to this object, and going through the given point.
 StraightLine2D StraightLine2D.getPerpendicular(Point2D point)
          Return a new Straight line, parallel to another straigth object (ray, straight line or edge), and going through the given point.
 StraightLine2D StraightObject2D.getPerpendicular(Point2D point)
          Create a straight line perpendicular to this object, and going through the given point.
 StraightLine2D StraightLine2D.getReverseCurve()
          Returns the straight line with same origin but with opposite direction vector.
 StraightLine2D StraightObject2D.getSupportLine()
          returns one straight line which contains this straight object.
 StraightLine2D StraightLine2D.transform(AffineTransform2D trans)
          Returns the transformed line.
 

Uses of StraightLine2D in math.geom2d.polygon
 

Fields in math.geom2d.polygon declared as StraightLine2D
protected  StraightLine2D HalfPlane2D.line
           
 

Uses of StraightLine2D in math.geom2d.transform
 

Fields in math.geom2d.transform declared as StraightLine2D
 StraightLine2D LineReflection2D.line
           
 

Methods in math.geom2d.transform that return StraightLine2D
 StraightLine2D LineReflection2D.getReflectionLine()