<div dir="ltr">Be careful about using non Integers with Rectangles, too.  As with Intervals, I think I remember that some of the API will break.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Sep 20, 2019 at 12:46 PM <<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">A new version of Graphics was added to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/Graphics-ct.419.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/inbox/Graphics-ct.419.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Graphics-ct.419<br>
Author: ct<br>
Time: 20 September 2019, 7:45:53.388726 pm<br>
UUID: 5deebfce-0321-9645-aebd-0b4bfb428259<br>
Ancestors: Graphics-nice.417<br>
<br>
Add Rectangle>>#pointAtFraction:<br>
<br>
Example: [(5@5 rect: 10@20) pointAtFraction: 0.5@1] will give you 7.5 @ 20.<br>
<br>
dep:feat-ol<br>
<br>
=============== Diff against Graphics-nice.417 ===============<br>
<br>
Item was added:<br>
+ ----- Method: Rectangle>>pointAtFraction: (in category 'rectangle functions') -----<br>
+ pointAtFraction: relativePoint<br>
+ <br>
+       ^ self origin + (self extent * relativePoint)!<br>
<br>
<br>
</blockquote></div>