Polygon.st
changeset 490 ef43c7a69346
parent 331 9ad8e3f94da5
child 1303 6ca5f36cdc63
--- a/Polygon.st	Thu Jan 30 15:38:03 1997 +0100
+++ b/Polygon.st	Wed Feb 12 13:23:57 1997 +0100
@@ -293,7 +293,16 @@
     "
 !
 
-bounds
+canBeFilled
+    "return true, if the receiver can be drawn as a filled geometric.
+     Always true here."
+
+    ^ true
+
+    "Created: 8.5.1996 / 08:16:53 / cg"
+!
+
+computeBounds
     "return the smallest enclosing rectangle"
 
     |minX maxX minY maxY t n "{ Class: SmallInteger }" |
@@ -340,15 +349,7 @@
     "
 
     "Modified: 8.5.1996 / 20:51:42 / cg"
-!
-
-canBeFilled
-    "return true, if the receiver can be drawn as a filled geometric.
-     Always true here."
-
-    ^ true
-
-    "Created: 8.5.1996 / 08:16:53 / cg"
+    "Created: 12.2.1997 / 11:44:11 / cg"
 !
 
 left
@@ -405,5 +406,5 @@
 !Polygon class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Polygon.st,v 1.23 1996-05-12 23:06:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Polygon.st,v 1.24 1997-02-12 12:23:44 cg Exp $'
 ! !