Uses of Class
edu.mit.sketch.geom.Line

Packages that use Line
edu.mit.sketch.fig   
edu.mit.sketch.geom   
edu.mit.sketch.grammar.me   
edu.mit.sketch.toolkit   
edu.mit.sketch.util   
 

Uses of Line in edu.mit.sketch.fig
 

Methods in edu.mit.sketch.fig with parameters of type Line
 void FigDocument.render(Line line)
           
 

Uses of Line in edu.mit.sketch.geom
 

Methods in edu.mit.sketch.geom that return Line
 Line Polygon.getEdge(int n)
          This method returns the nth edge of this Polygon.
 

Methods in edu.mit.sketch.geom with parameters of type Line
 Point Line.getIntersection(Line line)
          Returns the intersection of the two infinite length lines described by this line and the argument.
static boolean GeometryUtil.linesParallel(Line a, Line b, double t)
          Return true if two lines are roughly parallel Tolerance is the tolerance in the difference of slopes.
 

Constructors in edu.mit.sketch.geom with parameters of type Line
Line(Line line)
          The constructor.
 

Uses of Line in edu.mit.sketch.grammar.me
 

Constructors in edu.mit.sketch.grammar.me with parameters of type Line
Motor(Rectangle body, Line rotor)
          The constructor.
Cross(Line l1, Line l2)
          The constructor.
 

Uses of Line in edu.mit.sketch.toolkit
 

Methods in edu.mit.sketch.toolkit that return Line
abstract  Line Classifier.getLineApproximation()
          Returns the best fit Polygon for the StrokeData.
 Line SimpleClassifier.getLineApproximation()
          Returns the best fit Line for the StrokeData.
 

Methods in edu.mit.sketch.toolkit with parameters of type Line
 double ErrorCalculator.getLineError(StrokeData stroke_data, Line line)
          Get the error between the stroke_data and the shape.
 

Uses of Line in edu.mit.sketch.util
 

Methods in edu.mit.sketch.util with parameters of type Line
static double AWTUtil.leastSquaresForLine(Line line, Point[] points)
          calculate the lsq error.
static void AWTUtil.paintLine(Line line, Color color, Image image, AffineTransform transform)
          Paint line.
static void AWTUtil.paintLine(Line line, Color color, Component component, AffineTransform transform)
          Paint line.