Hello, I'm facing a floating point precision problem. If you execute this sample code:
import clutter r = clutter.Rectangle() r.set_size(20,20) r.set_scale(12.1,12.1) print r.get_scale() r.get_scale() will return something like (12.100006103515625, 12.100006103515625) instead of 12.1 I'm running pyclutter on an ubuntu hardy distribution (Intel 32 bits). Cheers, Julien
