Uses of Class
ProGAL.geom3d.Line

Packages that use Line
ProGAL.geom3d This package contains classes that are all related to three-dimensional geometric concepts. 
ProGAL.geom3d.volumes   
 

Uses of Line in ProGAL.geom3d
 

Methods in ProGAL.geom3d that return Line
 Line Plane.getIntersection(Plane pl)
          returns the intersection line with another plane
 

Methods in ProGAL.geom3d with parameters of type Line
 java.lang.Double Circle.getFirstIntersection(Line line, Point p, Vector dir, J3DScene scene)
          returns the smallest rotation angle (direction determined by vector dir) needed to bring point p on this circle to be on the line l as well.
 Point Plane.getIntersection(Line line)
          Get the intersection of a line with the plane.
 Point Line.getIntersection(Line l)
          Gets the intersection-point of this line with l.
 double Plane.getIntersectionParameter(Line line)
          Get the line-parameter of the intersection between a plane and a line.
 double Line.getSquaredDistance(Line l)
          Gets the minimum squared distance to another line.
 double ParametricPlane.intersectionParameter(Line l)
          Returns a parameter setting for the line describing the intersection with this plane.
 

Uses of Line in ProGAL.geom3d.volumes
 

Methods in ProGAL.geom3d.volumes with parameters of type Line
 LineSegment Sphere.getIntersection(Line line)
          Gets the secant on the line.
 java.lang.Double Cylinder.intersectionParameter(Line l)
           
 double[] Sphere.intersectionParameters(Line line)
          Returns the two line-parameters that indicate where line intersects this sphere.
 

Constructors in ProGAL.geom3d.volumes with parameters of type Line
InfCylinder(Line l, double r)