NewTOAPIA.Drawing.RGBA_Bytes.RGBA_Bytes C# (CSharp) Method

RGBA_Bytes() private method

private RGBA_Bytes ( RGBA_Bytes c, int a_ ) : System
c RGBA_Bytes
a_ int
return System
        RGBA_Bytes(RGBA_Bytes c, int a_)
        {
            m_R = (byte)c.m_R;
            m_G = (byte)c.m_G;
            m_B = (byte)c.m_B;
            m_A = (byte)a_;
        }

Same methods

RGBA_Bytes::RGBA_Bytes ( RGBA_Doubles c ) : System
RGBA_Bytes::RGBA_Bytes ( RGBA_Doubles c, double a_ ) : System
RGBA_Bytes::RGBA_Bytes ( double r_, double g_, double b_ ) : System
RGBA_Bytes::RGBA_Bytes ( double r_, double g_, double b_, double a_ ) : System
RGBA_Bytes::RGBA_Bytes ( int r_, int g_, int b_ ) : System
RGBA_Bytes::RGBA_Bytes ( int r_, int g_, int b_, int a_ ) : System