Uses of Class
jme.math.Line

Packages that use Line
jme.geometry.bounding   
jme.math   
 

Uses of Line in jme.geometry.bounding
 

Constructors in jme.geometry.bounding with parameters of type Line
BoundingCapsule(Line lineSegment, float radius)
          Constructor instantiates a new BoundingCapsule with supplied attributes of line segment and radius.
 

Uses of Line in jme.math
 

Methods in jme.math that return Line
static Line Approximation.orthogonalLineFit(Vector[] points)
          orthogonalLineFit creates a line that uses least squares and measures errors orthogonally rather than linearly.
 

Methods in jme.math with parameters of type Line
static float Distance.distancePointLineSquared(Vector point, Line line)
          distancePointLineSquared calculates the distance squared between a point and a line.
static float Distance.distancePointRaySquared(Vector point, Line ray)
          distancePointRaySquared calculates the distance squared between a point and a ray.
static float Distance.distancePointSegmentSquared(Vector point, Line seg)
          distancePointSegmentSquared calculates the distance squared between a point and a line segment.
static float Distance.distanceLineLineSquared(Line line1, Line line2)
          distanceLineLineSquared calculates the distance squared between two lines.
static float Distance.distanceLineRaySquared(Line line, Line ray)
          distanceLineRaySquared calculates the squared distance between a line and a ray.
static float Distance.distanceLineSegmentSquared(Line line, Line seg)
          distanceLineSegementSquared calculates the distance squared between a line and a line segment.
static float Distance.distanceRayRaySquared(Line ray1, Line ray2)
          distanceRayRaySquared calculates the distance squared between two rays.
static float Distance.distanceRaySegmentSquared(Line ray, Line seg)
          distanceRaySegmentSquared calculates the distance squared between a ray and a line segment.
static float Distance.distanceSegmentSegmentSquared(Line seg1, Line seg2)
          distanceSegmentSegmentSquared calculates the distance squared between two line segments.