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
{{ message }}
This repository was archived by the owner on Jul 3, 2021. It is now read-only.
I took a look at the formula you use, the one that is written in the readme: min + ((min - max) * position)
But it should not be: min + ((max - min) * position)
otherwise, for the maximum value we get negative values.
It would be possible to add an attribute to specify the value that is not specified between [0,1].
Example the formula is: value = [10,180] position = (value-min) / (max - min)
position (initialPosition) would be a value between [0,1].
I do not know if I explained myself well.
In the image you can see that you can also put images as a minimum and maximum value.
It can be done?
Hi @prscX , congratulations on the new project.
Some doubts:
I took a look at the formula you use, the one that is written in the readme:
min + ((min - max) * position)But it should not be:
min + ((max - min) * position)otherwise, for the maximum value we get negative values.
It would be possible to add an attribute to specify the value that is not specified between
[0,1].Example the formula is:
value = [10,180]position = (value-min) / (max - min)position (initialPosition) would be a value between
[0,1].I do not know if I explained myself well.
In the image you can see that you can also put images as a minimum and maximum value.
It can be done?