package tmcm.xModels;

class Line {  // simple object to hold coordinates of line endpoints
   short xL, yL, xR, yR;
   Line(short a, short b, short c, short d) {
      xL = a;
      yL = b;
      xR = c;
      yR = d;
   }
}


