Nexus.Graphics.Colors.ColorRgbF.ColorRgbF C# (CSharp) Method

ColorRgbF() public method

public ColorRgbF ( float r, float g, float b ) : System.Runtime.InteropServices
r float
g float
b float
return System.Runtime.InteropServices
        public ColorRgbF(float r, float g, float b)
        {
            R = r;
            G = g;
            B = b;
        }