@itwin/core-frontend 4.5.0-dev.32 → 4.5.0-dev.35

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Change Log - @itwin/core-frontend
2
2
 
3
- This log was last generated on Fri, 08 Mar 2024 15:58:53 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 15 Mar 2024 19:16:22 GMT and should not be manually modified.
4
+
5
+ ## 4.4.7
6
+ Fri, 15 Mar 2024 19:15:14 GMT
7
+
8
+ ### Updates
9
+
10
+ - Disable tile preloading when under memory pressure
4
11
 
5
12
  ## 4.4.6
6
13
  Fri, 08 Mar 2024 15:57:11 GMT
@@ -242,7 +242,7 @@ function trsMatrix(translation, rotation, scale, result) {
242
242
  const rotTf = core_geometry_1.Transform.createRefs(undefined, rotation ? core_geometry_1.Matrix3d.createFromQuaternion(core_geometry_1.Point4d.create(rotation[0], rotation[1], rotation[2], rotation[3])) : core_geometry_1.Matrix3d.identity);
243
243
  rotTf.matrix.transposeInPlace(); // See comment on Matrix3d.createFromQuaternion
244
244
  const transTf = core_geometry_1.Transform.createTranslation(translation ? new core_geometry_1.Point3d(translation[0], translation[1], translation[2]) : core_geometry_1.Point3d.createZero());
245
- const tf = scaleTf.multiplyTransformTransform(rotTf, result);
245
+ const tf = rotTf.multiplyTransformTransform(scaleTf, result);
246
246
  transTf.multiplyTransformTransform(tf, tf);
247
247
  return tf;
248
248
  }