예제 #1
0
파일: AOJ0081.java 프로젝트: t8m8/AOJ
 static void solve() {
   String[] s = in.next().split(",");
   Point p =
       reflect(
           new Line(
               Double.parseDouble(s[0]),
               Double.parseDouble(s[1]),
               Double.parseDouble(s[2]),
               Double.parseDouble(s[3])),
           new Point(Double.parseDouble(s[4]), Double.parseDouble(s[5])));
   out.println(p.getX() + " " + p.getY());
 }
예제 #2
0
파일: AOJ0081.java 프로젝트: t8m8/AOJ
 public String toString() {
   return "[(" + p1.getX() + "," + p1.getY() + "),(" + p2.getX() + "," + p2.getY() + ")]";
 }
예제 #3
0
파일: AOJ0081.java 프로젝트: t8m8/AOJ
 public double getY2() {
   return p2.getY();
 }
예제 #4
0
파일: AOJ0081.java 프로젝트: t8m8/AOJ
 public double getY1() {
   return p1.getY();
 }
예제 #5
0
파일: AOJ0081.java 프로젝트: t8m8/AOJ
 public Vector plus(Point p) {
   return new Vector(this.x + p.getX(), this.y + p.getY());
 }
예제 #6
0
파일: AOJ0081.java 프로젝트: t8m8/AOJ
 public Vector(Point target, Point source) {
   this.x = target.getX() - source.getX();
   this.y = target.getY() - source.getY();
 }