diff doodle/tk/test/test1.d @ 48:1b4c9ba58673

Stylistic overhaul.
author daveb
date Tue, 03 Aug 2010 17:37:21 +0930
parents 157b4ad5615d
children a274d16ab6ce
line wrap: on
line diff
--- a/doodle/tk/test/test1.d	Tue Aug 03 16:57:06 2010 +0930
+++ b/doodle/tk/test/test1.d	Tue Aug 03 17:37:21 2010 +0930
@@ -21,8 +21,8 @@
 
     Point p4 = Point(1.0, 10.0);
     Point p5 = Point(10.0, 1.0);
-    assert(min_extents(p4, p5) == Point(1.0, 1.0));     // min extents
-    assert(max_extents(p4, p5) == Point(10.0, 10.0));   // max extents
+    assert(minExtents(p4, p5) == Point(1.0, 1.0));     // min extents
+    assert(maxExtents(p4, p5) == Point(10.0, 10.0));   // max extents
 
     writefln("p1: %s", p1);                     // toString
 }