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

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