Axiom.Core.ColorEx.ColorEx C# (CSharp) Method

ColorEx() public method

Copy constructor.
public ColorEx ( ColorEx other ) : System
other ColorEx The ColorEx instance to copy
return System
		public ColorEx( ColorEx other )
			: this()
		{
			this.a = other.a;
			this.r = other.r;
			this.g = other.g;
			this.b = other.b;
		}

Same methods

ColorEx::ColorEx ( float r, float g, float b ) : System
ColorEx::ColorEx ( float a, float r, float g, float b ) : System