Rectangle.st
changeset 2426 3b04313af90e
parent 2381 10af98758a49
child 2441 9ca4dbc0dc64
equal deleted inserted replaced
2425:3c23ae3de6d6 2426:3b04313af90e
   666 
   666 
   667     ^ Array
   667     ^ Array
   668         with:#Rectangle
   668         with:#Rectangle
   669         with:left
   669         with:left
   670         with:top
   670         with:top
   671         with:width
   671         with:(left + width)
   672         with:height
   672         with:(top + height)
   673 
   673 
   674 
   674 
   675     "
   675     "
   676      Rectangle new fromLiteralArrayEncoding:#(Rectangle 100 200 300 500) 
   676      Rectangle new fromLiteralArrayEncoding:#(Rectangle 100 200 300 500) 
   677      (100@200 corner:300@500) literalArrayEncoding 
   677      (100@200 corner:300@500) literalArrayEncoding 
  1456 ! !
  1456 ! !
  1457 
  1457 
  1458 !Rectangle class methodsFor:'documentation'!
  1458 !Rectangle class methodsFor:'documentation'!
  1459 
  1459 
  1460 version
  1460 version
  1461     ^ '$Header: /cvs/stx/stx/libbasic/Rectangle.st,v 1.51 1997-02-12 12:23:34 cg Exp $'
  1461     ^ '$Header: /cvs/stx/stx/libbasic/Rectangle.st,v 1.52 1997-02-28 16:22:10 ca Exp $'
  1462 ! !
  1462 ! !