Uses of Class
sm.SMPolyLine

Packages that use SMPolyLine
sm   
 

Uses of SMPolyLine in sm
 

Methods in sm that return SMPolyLine
 SMPolyLine SMShape.asPolyLine()
          Returns this shape if it is a polyline, null otherwise
 SMPolyLine SMPolyLine.reset(double x, double y)
          Resets this polyline to the unique point (x, y).
 SMPolyLine SMPolyLine.reset(java.awt.geom.Point2D pt)
          Resets this polyline to the unique point pt.
 SMPolyLine SMPolyLine.lineTo(double x, double y)
          Adds a line segment to this polyline from the current point to point (x, y).
 SMPolyLine SMPolyLine.lineTo(java.awt.geom.Point2D pt)
          Adds a line segment to this polyline from the current point to point pt.
 SMPolyLine SMPolyLine.moveTo(double x, double y)
          Sets the current point of this polyLine to point (x, y).
 SMPolyLine SMPolyLine.moveTo(java.awt.geom.Point2D pt)
          Sets the current point of this polyLine to point pt.
 SMPolyLine SMPolyLine.arcTo(double start, double extent, double rx, double ry)
          Adds an arc segment to this polyline.
 SMPolyLine SMPolyLine.quadTo(double ctrlx1, double ctrly1, double xEnd, double yEnd)
          Adds a quadric curve segment to this polyline.
 SMPolyLine SMPolyLine.quadTo(java.awt.geom.Point2D ptCtrl, java.awt.geom.Point2D ptEnd)
          Adds a quadric curve segment to this polyline.
 SMPolyLine SMPolyLine.curveTo(double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double xEnd, double yEnd)
          Adds a cubic curve segment to this polyline.
 SMPolyLine SMPolyLine.curveTo(java.awt.geom.Point2D ptCtrl1, java.awt.geom.Point2D ptCtrl2, java.awt.geom.Point2D ptEnd)
          Adds a cubic curve segment to this polyline.
 SMPolyLine SMPolyLine.close()
          Closes this polyLine by drawing a straight line from the current point to the starting point.
 SMPolyLine SMPolyLine.removeLastSegment()
          Removes the last segment of this polyline, if any.
 SMPolyLine SMCanvas.newPolyLine(java.awt.geom.Point2D p)
          Create a new polyline and adds it to the canvas.
 SMPolyLine SMCanvas.newPolyLine(double x, double y)
          Create a new polyline and adds it to the canvas.