summaryrefslogtreecommitdiff
path: root/test/files/run/Course-2002-06.scala
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2005-10-04 16:15:01 +0000
committermihaylov <mihaylov@epfl.ch>2005-10-04 16:15:01 +0000
commitc9305ff74fc9e23d2a8f4c6a27a25e5562c048cc (patch)
tree759783168829fe3609bca18f4682572a1b2ac814 /test/files/run/Course-2002-06.scala
parentf13923cb2aea70b69f548a5c0fabd343809132b8 (diff)
downloadscala-c9305ff74fc9e23d2a8f4c6a27a25e5562c048cc.tar.gz
scala-c9305ff74fc9e23d2a8f4c6a27a25e5562c048cc.tar.bz2
scala-c9305ff74fc9e23d2a8f4c6a27a25e5562c048cc.zip
*** empty log message ***
Diffstat (limited to 'test/files/run/Course-2002-06.scala')
-rw-r--r--test/files/run/Course-2002-06.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/files/run/Course-2002-06.scala b/test/files/run/Course-2002-06.scala
index ca816eda06..8ce003333f 100644
--- a/test/files/run/Course-2002-06.scala
+++ b/test/files/run/Course-2002-06.scala
@@ -122,12 +122,6 @@ class PostScript (filename: String, _width: Double, _height: Double)
scaleAndCenter(new Frame(origin, edgeX, edgeY), width / height)
}
-// /** File where to print.*/
-// import java.io._;
-// val out : PrintStream = new PrintStream(
-// if (filename == "-") java.lang.System.out
-// else new FileOutputStream(filename));
-
def plotLine(x1: Double, y1: Double, x2: Double, y2: Double): Unit = {
Console.println(round(x1) + " " + round(y1) + " m " +
round(x2) + " " + round(y2) + " l");