#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 12 Oct 2016 15:45:04 +0200
changeset 20606 12764db7d3a4
parent 20605 0976069c6263
child 20607 aaf92896a6b8
#DOCUMENTATION by cg class: Rectangle comment/format in: #asFractionalLayout
Rectangle.st
--- a/Rectangle.st	Wed Oct 12 15:45:00 2016 +0200
+++ b/Rectangle.st	Wed Oct 12 15:45:04 2016 +0200
@@ -821,16 +821,19 @@
 
     l := LayoutFrame new.
     l
-	leftFraction:(self left);
-	rightFraction:(self right);
-	topFraction:(self top);
-	bottomFraction:(self bottom).
+        leftFraction:(self left);
+        rightFraction:(self right);
+        topFraction:(self top);
+        bottomFraction:(self bottom).
     ^ l
 
     "
      (0.5@0.5 corner:0.75@0.75) asFractionalLayout
      (0.5@0.5 corner:0.75@0.75) asOffsetLayout
      (0.5@0.5 corner:0.75@0.75) asLayout
+     (0@0 corner:1@1) asLayout
+     (0@0 corner:1@1) asFractionalLayout
+     (0@0 corner:1@1) asOffsetLayout
     "
 !