You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Step values need to be able to be quantized to decimal places, e.g. min = 0, max = 5, step = .2. Possible algorithm: Take the raw value, divide it by step, round that number, and then multiply the original step value by the rounded number. E.g.
@sgomes already doing some work on this.
Notes
Step values need to be able to be quantized to decimal places, e.g.
min = 0, max = 5, step = .2
. Possible algorithm: Take the raw value, divide it bystep
, round that number, and then multiply the original step value by the rounded number. E.g.The text was updated successfully, but these errors were encountered: