Class Line

java.lang.Object
  |
  +--Line

public class Line
extends java.lang.Object

Simple Line struct class,


Field Summary
 int x1
          point 1 x coord
 int x2
          point 2 x coord
 int y1
          point 1 y coord
 int y2
          point 2 y coord
 
Constructor Summary
Line()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

x1

public int x1
point 1 x coord


y1

public int y1
point 1 y coord


x2

public int x2
point 2 x coord


y2

public int y2
point 2 y coord

Constructor Detail

Line

public Line()