Rectangle.st
branchjv
changeset 20727 fb8c5591428b
parent 20344 152b525b5c63
parent 20606 12764db7d3a4
child 21292 21faad473411
--- a/Rectangle.st	Wed Oct 12 07:05:13 2016 +0200
+++ b/Rectangle.st	Tue Oct 25 12:31:42 2016 +0100
@@ -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
     "
 !