src/share/classes/java/awt/geom/Line2D.java

Print this page




  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.awt.geom;
  27 
  28 import java.awt.Shape;
  29 import java.awt.Rectangle;
  30 import java.io.Serializable;
  31 
  32 /**
  33  * This <code>Line2D</code> represents a line segment in {@code (x,y)}
  34  * coordinate space.  This class, like all of the Java 2D API, uses a
  35  * default coordinate system called <i>user space</i> in which the y-axis
  36  * values increase downward and x-axis values increase to the right.  For
  37  * more information on the user space coordinate system, see the
  38  * <a href="http://java.sun.com/j2se/1.3/docs/guide/2d/spec/j2d-intro.fm2.html#61857">
  39  * Coordinate Systems</a> section of the Java 2D Programmer's Guide.
  40  * <p>
  41  * This class is only the abstract superclass for all objects that
  42  * store a 2D line segment.
  43  * The actual storage representation of the coordinates is left to
  44  * the subclass.
  45  *
  46  * @author      Jim Graham
  47  * @since 1.2
  48  */
  49 public abstract class Line2D implements Shape, Cloneable {
  50 
  51     /**
  52      * A line segment specified with float coordinates.
  53      * @since 1.2
  54      */
  55     public static class Float extends Line2D implements Serializable {
  56         /**
  57          * The X coordinate of the start point of the line segment.
  58          * @since 1.2




  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.awt.geom;
  27 
  28 import java.awt.Shape;
  29 import java.awt.Rectangle;
  30 import java.io.Serializable;
  31 
  32 /**
  33  * This <code>Line2D</code> represents a line segment in {@code (x,y)}
  34  * coordinate space.  This class, like all of the Java 2D API, uses a
  35  * default coordinate system called <i>user space</i> in which the y-axis
  36  * values increase downward and x-axis values increase to the right.  For
  37  * more information on the user space coordinate system, see the
  38  * <a href="http://docs.oracle.com/javase/1.3/docs/guide/2d/spec/j2d-intro.fm2.html#61857">
  39  * Coordinate Systems</a> section of the Java 2D Programmer's Guide.
  40  * <p>
  41  * This class is only the abstract superclass for all objects that
  42  * store a 2D line segment.
  43  * The actual storage representation of the coordinates is left to
  44  * the subclass.
  45  *
  46  * @author      Jim Graham
  47  * @since 1.2
  48  */
  49 public abstract class Line2D implements Shape, Cloneable {
  50 
  51     /**
  52      * A line segment specified with float coordinates.
  53      * @since 1.2
  54      */
  55     public static class Float extends Line2D implements Serializable {
  56         /**
  57          * The X coordinate of the start point of the line segment.
  58          * @since 1.2