I\'m running into the following issue:
Given various numbers like:
10.38
11.12
5.24
9.76
does an already \'built-in\' functio
The solution of paxdiablo can be a little bit improved.
def roundPartial (value, resolution): return round (value /float(resolution)) * resolution
so the function is now: "data-type sensitive".