output entfernt

This commit is contained in:
Armin Wolf 2017-06-11 16:21:23 +02:00
parent 8e1c642f52
commit 7e6977b086
1 changed files with 0 additions and 1 deletions

View File

@ -117,7 +117,6 @@ public class Presenter {
Double x = (p1.getY() - p2.getY()) / (p2.getX() - p1.getX());
Double y = ((p1.getX() * p2.getY()) - (p2.getX() * p1.getY())) / (p1.getX() - p2.getX());
System.out.printf("RESULT: (%3.3f, %3.3f)\n", x, y);
return new Coordinates(x, y);
}