Svg2Xaml.SvgColor.SvgColor C# (CSharp) Method

SvgColor() public method

public SvgColor ( byte red, byte green, byte blue ) : System
red byte
green byte
blue byte
return System
        public SvgColor(byte red, byte green, byte blue)
        {
            Red = red / 255.0f;
              Green = green / 255.0f;
              Blue = blue / 255.0f;
        }

Same methods

SvgColor::SvgColor ( float red, float green, float blue ) : System