You can at least reduce the 4 calls to int(round(...)) using a list comprehension: rounded = [int(round(x)) for x in bounds] -Frank
View entire thread