Axiom.Media.Col3f.Col3f C# (CSharp) Method

Col3f() public method

public Col3f ( float r, float g, float b ) : System
r float
g float
b float
return System
		public Col3f( float r, float g, float b )
		{
			this.r = r;
			this.g = g;
			this.b = b;
		}
	}
Col3f