@itwin/core-geometry 3.3.0-dev.66 → 3.3.0-dev.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -678,7 +678,7 @@ export class Range3d extends RangeBase {
678
678
  if (!Range3d.isNull(other) && !Range3d.isNull(this)) {
679
679
  this.high.x += RangeBase.multiplyIfPositive(this.high.x - other.high.x, extrapolationFactor);
680
680
  this.high.y += RangeBase.multiplyIfPositive(this.high.y - other.high.y, extrapolationFactor);
681
- this.high.z = RangeBase.multiplyIfPositive(this.high.z - other.high.z, extrapolationFactor);
681
+ this.high.z += RangeBase.multiplyIfPositive(this.high.z - other.high.z, extrapolationFactor);
682
682
  this.low.x -= RangeBase.multiplyIfPositive(other.low.x - this.low.x, extrapolationFactor);
683
683
  this.low.y -= RangeBase.multiplyIfPositive(other.low.y - this.low.y, extrapolationFactor);
684
684
  this.low.z -= RangeBase.multiplyIfPositive(other.low.z - this.low.z, extrapolationFactor);