New submission from Ron Hoffmann <rhoffm...@muskokawoods.com>:
position coordinates retrieved from any object on a canvas with pos = canvas.bbox(object) are returned correctly but when drawn on the canvas (x0,y0) are correct, but (x1, y1) are not drawn in the proper positions. x1 has been divided by 2 somewhere and y1 as been multiplied by 2 somewhere. in order for the bounding box to be drawn correctly x1 and y1 need to be recalculated as follows x1 = pos[0] + ( ( pos[2] - pos[0] ) * 2 ) y1 = pos[1] + ( ( pos[3] - pos[1] ) / 2 ) ---------- components: Tkinter messages: 385446 nosy: rhoffmann priority: normal severity: normal status: open title: Tkinter bbox coordinates incorrectly drawn type: behavior versions: Python 3.8 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue42992> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com