public bool Equals([AllowNull] Plane other) { return(distance.Equals(other.distance) && normal.Equals(other.normal)); }
public bool Equals([AllowNull] Line other) { return(a.Equals(other.a) && b.Equals(other.b)); }