Пример #1
0
 /// <summary>
 /// Determines whether the specified LineSegment3 is equal to the current Ray.
 /// </summary>
 /// <param name="other">The LineSegment3 to compare with the current LineSegment3.</param>
 public bool Equals(LineSegment3 other)
 {
     return Start.Equals(other.Start) && End.Equals(other.End);
 }
Пример #2
0
 /// <summary>
 /// Determines whether the specified LineSegment3 is equal to the current Ray.
 /// </summary>
 /// <param name="other">The LineSegment3 to compare with the current LineSegment3.</param>
 public bool Equals(LineSegment3 other)
 {
     return(Start.Equals(other.Start) && End.Equals(other.End));
 }