hellfire 0.19.1 → 0.19.2
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 +4 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [0.19.2](http://10.16.100.57/diffusion/115/paladin/compare/v0.19.1...v0.19.2) (2022-02-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [0.19.1](http://10.16.100.57/diffusion/115/paladin/compare/v0.19.0...v0.19.1) (2022-02-07)
|
|
6
10
|
|
|
7
11
|
|
package/dist/index.js
CHANGED
|
@@ -26776,7 +26776,7 @@ var ReferencePositionTool = /*#__PURE__*/function (_BaseAnnotationPlusTo) {
|
|
|
26776
26776
|
|
|
26777
26777
|
var distance = _this3.calcDistance(sourcePointV3, sourcePointInTargetPlaneV3);
|
|
26778
26778
|
|
|
26779
|
-
if (!min || distance < min) {
|
|
26779
|
+
if (!min && min !== 0 || distance < min) {
|
|
26780
26780
|
min = distance;
|
|
26781
26781
|
targetImageIndex = index;
|
|
26782
26782
|
}
|