Ejemplo n.º 1
0
 /// <summary>
 /// Checks for equality with another <see cref="Triangle3"/>.
 /// </summary>
 /// <param name="other">The other triangle.</param>
 /// <returns>A value indicating whether other is equivalent to the triangle.</returns>
 public bool Equals(Triangle3 other)
 {
     return
         (A.Equals(other.A) &&
          B.Equals(other.B) &&
          C.Equals(other.C));
 }