/ Published in: Ruby
Scales a number from a given range into a specific range, as explained in this Stack Overflow post.
Just call it, for example like:
0.5.scale_between(0, 1, 100, 200)
The result would be 150.
Expand |
Embed | Plain Text
class Numeric def scale_between(from_min, from_max, to_min, to_max) ((to_max - to_min) * (self - from_min)) / (from_max - from_min) + to_min end end
You need to login to post a comment.
