Sharpex2D.Math.Vector2.Equals C# (CSharp) 메소드

Equals() 공개 메소드

Determines whether the specified System.Object is equal to this instance.
public Equals ( object obj ) : bool
obj object The to compare with this instance.
리턴 bool
        public override bool Equals(object obj)
        {
            return this == (Vector2) obj;
        }