Spline.st
changeset 490 ef43c7a69346
parent 388 9f1c439ad66b
child 493 5e89f340db0f
--- a/Spline.st	Thu Jan 30 15:38:03 1997 +0100
+++ b/Spline.st	Wed Feb 12 13:23:57 1997 +0100
@@ -504,7 +504,15 @@
 
 !Spline methodsFor:'queries'!
 
-bounds
+canBeFilled
+    "return true, if the receiver can be drawn as a filled geometric.
+     Always true here."
+
+    ^ true
+
+!
+
+computeBounds
     "return the smallest enclosing rectangle"
 
     |l minX maxX minY maxY|
@@ -537,16 +545,8 @@
 
     ^ Rectangle left:minX right:maxX top:minY bottom:maxY
 
-    "Created: 13.5.1996 / 00:27:29 / cg"
     "Modified: 13.5.1996 / 11:02:29 / cg"
-!
-
-canBeFilled
-    "return true, if the receiver can be drawn as a filled geometric.
-     Always true here."
-
-    ^ true
-
+    "Created: 12.2.1997 / 11:45:02 / cg"
 !
 
 isCyclic
@@ -560,5 +560,5 @@
 !Spline class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Spline.st,v 1.12 1996-06-05 11:54:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Spline.st,v 1.13 1997-02-12 12:23:23 cg Exp $'
 ! !