public bool Equals(BoundingBox3 other) { return(_min.Equals(other._min) && _max.Equals(other._max)); }
public bool Equals(BoundingBox3 other) { return(min.Equals(other.min) && max.Equals(other.max)); }