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