Feb. 13, 2013
9:47 p.m.
I tried to put a halt in Rectangle>>setOrigin: topLeft corner: bottomRight in latest Pharo (20543) if width < 0 or height < 0 and of course the image hung... which means that degenerated Rectangles are pretty much in use I think I will juts raise a Notification, and catch it with a MessageTally hack to track the senders (as documented at http://bugs.squeak.org/bug_view_advanced_page.php?bug_id=6755 ) Nicolas 2013/2/13 Igor Stasenko <siguctua@gmail.com>:
yes.. and i'd like to add that in some places i replaced senders of
rect1 intersect: rect2
with:
rect1 intersect: rect2 ifNone: [ self error: 'should not happen'].
as it appears, it happens in some places... because of the above inconsistency.
-- Best regards, Igor Stasenko.