コード例 #1
0
ファイル: LineCurve2.cs プロジェクト: mh-soft/mh-master
        // Token: 0x0600017E RID: 382 RVA: 0x00006510 File Offset: 0x00004710
        public override bool Equals(object obj)
        {
            if (obj == null || base.GetType() != obj.GetType())
            {
                return(false);
            }
            LineCurve2 other = (LineCurve2)obj;

            return(this.Equals(other));
        }
コード例 #2
0
ファイル: LineCurve2.cs プロジェクト: mh-soft/mh-master
 // Token: 0x0600017F RID: 383 RVA: 0x00006544 File Offset: 0x00004744
 public bool Equals(LineCurve2 other)
 {
     return(this.Origin.Equals(other.Origin) && this.Direction.Equals(other.Direction));
 }