Point.st
changeset 8791 1171ee15fa9c
parent 8452 6f4318707476
child 8972 c3fb4f2e91f8
--- a/Point.st	Wed Mar 16 19:47:23 2005 +0100
+++ b/Point.st	Wed Mar 16 20:13:58 2005 +0100
@@ -657,11 +657,11 @@
     "return the number of the quadrant containing the receiver.
      quadrants are named as follows:
 
-	   ^    2  |  3
-	   Y    ------
-		1  |  0
+           ^    2  |  3
+           Y    ------
+                1  |  0
 
-		X >
+                X >
 
      Q: what is to be returned if any coordinate is 0 ?
     "
@@ -669,11 +669,11 @@
     ^ 0@0 quadrantContaining:self
 
     "
-     (0@0) quadrant   
      (1@1) quadrant    
      (-1@1) quadrant    
      (-1@-1) quadrant 
      (1@-1) quadrant   
+     (0@0) quadrant   
     "
 !
 
@@ -1152,7 +1152,7 @@
 !Point class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Point.st,v 1.67 2004-07-16 13:37:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Point.st,v 1.68 2005-03-16 19:13:58 cg Exp $'
 ! !
 
 Point initialize!