Spline.st
changeset 2159 99864f0ab0ed
parent 1303 6ca5f36cdc63
child 2318 beeb4368c521
--- a/Spline.st	Sat Jun 06 12:12:28 2009 +0200
+++ b/Spline.st	Sat Jun 06 12:12:30 2009 +0200
@@ -20,9 +20,6 @@
         To: goodies-lib@cs.man.ac.uk
         Subject: help 
 "
-
-
-
 "{ Package: 'stx:libbasic2' }"
 
 Geometric subclass:#Spline
@@ -507,14 +504,6 @@
 
 !Spline methodsFor:'queries'!
 
-canBeFilled
-    "return true, if the receiver can be drawn as a filled geometric.
-     Always true here."
-
-    ^ true
-
-!
-
 computeBounds
     "return the smallest enclosing rectangle"
 
@@ -560,8 +549,18 @@
     "Created: 8.5.1996 / 18:47:50 / cg"
 ! !
 
+!Spline methodsFor:'testing'!
+
+canBeFilled
+    "return true, if the receiver can be drawn as a filled geometric.
+     Always true here."
+
+    ^ true
+
+! !
+
 !Spline class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Spline.st,v 1.15 2003-08-29 17:32:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Spline.st,v 1.16 2009-06-06 10:12:30 cg Exp $'
 ! !