Nexus.Graphics.Colors.ColorRgbF.ColorRgbF C# (CSharp) Méthode

ColorRgbF() public méthode

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