public override bool Equals(object obj) { UniformValueUint3 o = obj as UniformValueUint3; if (o == null) { return(false); } return(X == o.X && Y == o.Y && Z == o.Z); }
public void Set(IUniformValue source) { UniformValueUint3 other = source as UniformValueUint3; if (other == null) { return; } X = other.X; Y = other.Y; Z = other.Z; }