예제 #1
0
 public bool Equals(Ray2d other)
 => Origin.Equals(other.Origin) && Direction.Equals(other.Direction);
예제 #2
0
 public bool Equals(Circle2d other)
 => Center.Equals(other.Center) && Radius.Equals(other.Radius);
예제 #3
0
 public bool Equals(Plane2d other)
 => Normal.Equals(other.Normal) && Distance.Equals(other.Distance);