Skip to content

Commit d96bf4e

Browse files
committed
ENH: Generate Inverse Pole Figure Images.
Signed-off-by: Michael Jackson <mike.jackson@bluequartz.net>
1 parent b9c7b2e commit d96bf4e

10 files changed

Lines changed: 1382 additions & 0 deletions

.claude/settings.local.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(ls:*)",
5+
"Bash(cmake --build:*)",
6+
"Bash(ctest:*)",
7+
"Bash(cmake:*)",
8+
"Bash(python3:*)",
9+
"Bash(ninja -t targets:*)",
10+
"Bash(git rm:*)",
11+
"Bash(tar:*)",
12+
"Bash(test:*)",
13+
"Bash(git commit:*)",
14+
"Bash(git push:*)",
15+
"Bash(/Users/mjackson/Workspace5/DREAM3D-Build/NX-Com-Qt69-Vtk95-Rel/Bin/SimplnxCoreUnitTest:*)",
16+
"Bash(/opt/local/cmake-3.30.3-macos-universal/CMake.app/Contents/bin/cmake:*)",
17+
"Bash(for f in segment_features_neighbor_scheme_test.tar.gz segment_features_test_data.tar.gz)",
18+
"Bash(do /opt/local/cmake-3.30.3-macos-universal/CMake.app/Contents/bin/cmake -E tar xzf \"$f\")",
19+
"Bash(done)",
20+
"Bash(for f in 6_5_test_data_1_v2.tar.gz segment_features_test_data.tar.gz 6_6_ebsd_segment_features.tar.gz segment_features_neighbor_scheme_test.tar.gz)",
21+
"Bash(do echo \"Extracting $f...\")",
22+
"Bash(echo:*)",
23+
"Bash(for f in 6_5_test_data_1_v2.tar.gz segment_features_test_data.tar.gz segment_features_neighbor_scheme_test.tar.gz)",
24+
"Bash(do tar -xzf \"$f\")",
25+
"Bash(/Users/mjackson/Workspace5/DREAM3D-Build/NX-Com-Qt69-Vtk95-Rel/Bin/OrientationAnalysisUnitTest:*)",
26+
"Bash(xargs sed:*)",
27+
"Bash(grep:*)",
28+
"Bash(git status:*)",
29+
"Bash(git add:*)",
30+
"Bash(git push:*)",
31+
"Bash(tee:*)",
32+
"Bash(git mv:*)",
33+
"Bash(perl -pe:*)",
34+
"Bash(find:*)",
35+
"Bash(perl -pi -e:*)",
36+
"Bash(perl -pi -e 's/k_TypeName = \"\"AbstractNodeGeometry0D\"\"/k_TypeName = \"\"INodeGeometry0D\"\"/g':*)",
37+
"Bash(gh pr view:*)",
38+
"Bash(/opt/local/bin/gh pr view:*)",
39+
"WebFetch(domain:github.com)",
40+
"Bash(git checkout:*)"
41+
],
42+
"deny": [
43+
"Bash(rm -rf *)"
44+
]
45+
}
46+
}

Source/Apps/SourceList.cmake

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ target_include_directories(generate_ipf_legends
3232
PRIVATE
3333
"${EbsdLibProj_SOURCE_DIR}/3rdParty/canvas_ity/src")
3434

35+
add_executable(generate_ipf_density ${EbsdLibProj_SOURCE_DIR}/Source/Apps/generate_ipf_density.cpp)
36+
target_link_libraries(generate_ipf_density PUBLIC EbsdLib)
37+
target_include_directories(generate_ipf_density
38+
PUBLIC
39+
${EbsdLibProj_SOURCE_DIR}/Source
40+
${EbsdLibProj_BINARY_DIR})
41+
3542
add_executable(ParseAztecProject ${EbsdLibProj_SOURCE_DIR}/Source/Apps/ParseAztecProject.cpp)
3643
target_link_libraries(ParseAztecProject PUBLIC EbsdLib)
3744
target_include_directories(ParseAztecProject PUBLIC ${EbsdLibProj_SOURCE_DIR}/Source)

0 commit comments

Comments
 (0)