mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 11:37:01 +00:00
13 lines
303 B
C#
13 lines
303 B
C#
using System;
|
|
|
|
namespace CMLeonOS.Utils
|
|
{
|
|
public static class FloatExtensions
|
|
{
|
|
public static float Map(this float value, float inMin, float inMax, float outMin, float outMax)
|
|
{
|
|
return (value - inMin) * (outMax - outMin) / (inMax - inMin) + outMin;
|
|
}
|
|
}
|
|
}
|