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);