Uses of Interface
net.sf.latexdraw.glib.models.interfaces.ILine

Packages that use ILine
net.sf.latexdraw.glib.models.impl   
net.sf.latexdraw.glib.models.interfaces   
 

Uses of ILine in net.sf.latexdraw.glib.models.impl
 

Classes in net.sf.latexdraw.glib.models.impl that implement ILine
(package private)  class LLine
          Defines a model of a line.
 

Methods in net.sf.latexdraw.glib.models.impl that return ILine
 ILine LShapeFactory.createLine(double x1, double y1, double x2, double y2)
           
 ILine LShapeFactory.createLine(double b, IPoint p1)
           
 ILine LShapeFactory.createLine(IPoint p1, IPoint p2)
           
 ILine LArrow.getArrowLine()
           
 ILine LAxes.getArrowLine(IArrow arrow)
           
 ILine LBezierCurve.getArrowLine(IArrow arrow)
           
 ILine LGroup.getArrowLine(IArrow arrow)
           
 ILine LPolyline.getArrowLine(IArrow arrow)
           
 ILine LShape.getArrowLine(IArrow arrow)
           
private  ILine LAxes.getArrowLineX(boolean leftX)
           
private  ILine LAxes.getArrowLineY(boolean topY)
           
 ILine LLine.getPerpendicularLine(IPoint pt)
           
 

Methods in net.sf.latexdraw.glib.models.impl with parameters of type ILine
 IPoint[] LEllipse.getIntersection(ILine line)
           
 IPoint LLine.getIntersection(ILine l)
           
 IPoint LLine.getIntersectionSegment(ILine l)
           
 

Uses of ILine in net.sf.latexdraw.glib.models.interfaces
 

Methods in net.sf.latexdraw.glib.models.interfaces that return ILine
 ILine IShapeFactory.createLine(double x1, double y1, double x2, double y2)
          Constructs a line from the specified coordinates.
 ILine IShapeFactory.createLine(double b, IPoint p1)
          Creates a line by creating a second point with:
 ILine IShapeFactory.createLine(IPoint p1, IPoint p2)
          Constructs a line from the specified Point2D objects.
 ILine IArrow.getArrowLine()
           
 ILine IShape.getArrowLine(IArrow arrow)
           
 ILine ILine.getPerpendicularLine(IPoint pt)
          Creates the line which is perpendicular to the current line at the point pt.
 

Methods in net.sf.latexdraw.glib.models.interfaces with parameters of type ILine
 IPoint[] IEllipse.getIntersection(ILine line)
          Computes the intersection points between the ellipse and the given line.
 IPoint ILine.getIntersection(ILine l)
           
 IPoint ILine.getIntersectionSegment(ILine l)