AoMEngineLibrary.Graphics.Model.Color3D.Equals C# (CSharp) Method

Equals() public method

Tests equality between this color and another color
public Equals ( Color3D other ) : bool
other Color3D Color to test against
return bool
        public bool Equals(Color3D other)
        {
            return (R == other.R) && (G == other.G) && (B == other.B);
        }

Same methods

Color3D::Equals ( object obj ) : bool