Artemis.Plugins.LayerBrushes.Particle.Extension.RandomBetween C# (CSharp) Метод

RandomBetween() публичный статический Метод

public static RandomBetween ( Random rnd, float a, float b ) : float
rnd Random
a float
b float
Результат float
        public static float RandomBetween(this Random rnd, float a, float b) => (float)((rnd.NextDouble() * (b - a)) + a);