#DOCUMENTATION by exept
authorClaus Gittinger <cg@exept.de>
Mon, 23 Dec 2019 14:20:25 +0100
changeset 25161 692ae124f257
parent 25160 16f6e13bfd18
child 25162 2ea1bce36b1d
#DOCUMENTATION by exept class: Point comment/format in: #< #asLargerPowerOfTwo #asSmallerPowerOfTwo
Point.st
--- a/Point.st	Mon Dec 23 14:12:33 2019 +0100
+++ b/Point.st	Mon Dec 23 14:20:25 2019 +0100
@@ -339,11 +339,18 @@
 
     "notice the funny result if one coordinate has the same value ...
 
-     (3@4) < (4@4)
-     (3@4) <= (4@4)
-     (3@4) > (4@4)
-     (4@4) >= (3@4)
-     (4@4) > (3@4)
+     (3@3) < (4@4)     -> true
+     (3@4) < (4@4)     -> false
+     (4@3) < (4@4)     -> false
+
+     (3@3) <= (4@4)    -> true
+     (3@4) <= (4@4)    -> true
+     (4@3) <= (4@4)    -> true
+     (4@4) <= (4@4)    -> true
+
+     (3@4) > (4@4)     -> false
+     (4@4) >= (3@4)    -> true
+     (4@4) > (3@4)     -> false
     "
 
     "Modified: / 07-05-1996 / 12:14:25 / cg"