Skip to content

Commit c977bcc

Browse files
authored
VERS: Update EbsdLib to 1.0.40 (BlueQuartzSoftware#1458)
1 parent c7f0f1d commit c977bcc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ source:
99
- path: ../
1010
folder: simplnx
1111
- git_url: https://github.com/BlueQuartzSoftware/EbsdLib
12-
git_rev: v1.0.39
12+
git_rev: v1.0.40
1313
folder: EbsdLib
1414
- git_url: https://github.com/BlueQuartzSoftware/H5Support
1515
git_rev: v1.0.13

docs/Build_From_Source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
| blosc | <https://github.com/Blosc/c-blosc> | 1.18.1 |
99
| boost-mp11 | <https://github.com/boostorg/mp11> | 1.77.0 |
1010
| catch2 | <https://github.com/catchorg/Catch2> | 2.13.6 |
11-
| ebsdlib | <https://www.github.com/bluequartzsoftware/EBSDLib> | 1.0.39 |
11+
| ebsdlib | <https://www.github.com/bluequartzsoftware/EBSDLib> | 1.0.40 |
1212
| eigen3 | <https://gitlab.com/libeigen/eigen.git> | 3.4.0 |
1313
| expected-lite | <https://github.com/martinmoene/expected-lite> | 0.8.0 |
1414
| fmt | <https://github.com/fmtlib/fmt> | 11.1.4 |

src/Plugins/OrientationAnalysis/src/OrientationAnalysis/Filters/Algorithms/ComputeAvgOrientations.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Result<> ComputeAvgOrientations::operator()()
104104

105105
// Create a copy of the quaternion
106106
QuatF curAvgQuat(avgQuats[featureIdOffset] / count, avgQuats[featureIdOffset + 1] / count, avgQuats[featureIdOffset + 2] / count, avgQuats[featureIdOffset + 3] / count);
107-
curAvgQuat = curAvgQuat.unitQuaternion();
107+
curAvgQuat = curAvgQuat.normalize().getPositiveOrientation();
108108

109109
avgQuats[featureIdOffset] = curAvgQuat.x();
110110
avgQuats[featureIdOffset + 1] = curAvgQuat.y();

vcpkg-configuration.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
{
99
"kind": "git",
1010
"repository": "https://github.com/bluequartzsoftware/simplnx-registry",
11+
"baseline": "9ff0ea7373196b1c26c9cac15919b23045405994",
1112
"packages": [
1213
"benchmark",
1314
"blosc",
@@ -33,8 +34,7 @@
3334
"vcpkg-cmake-config",
3435
"zlib",
3536
"zstd"
36-
],
37-
"baseline": "29bc0b17debdcb1341eb98992ecefb62d768b892"
37+
]
3838
}
3939
]
4040
}

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"dependencies": [
7878
{
7979
"name": "ebsdlib",
80-
"version>=": "1.0.39"
80+
"version>=": "1.0.40"
8181
}
8282
]
8383
},

0 commit comments

Comments
 (0)