Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ __pycache__/
release
debug
Test/ProjectTest/Build
CMakeUserPresets.json

# Python build-related files
pyebsd/build/
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

# set project's name
project(EbsdLibProj VERSION 1.0.39)
project(EbsdLibProj VERSION 1.0.40)

# ---------- Setup output Directories -------------------------
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
Expand Down
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"VCPKG_INSTALLED_DIR": {
"type": "STRING",
"value": "${sourceDir}/../vcpkg-installed"
"value": "${sourceDir}/../vcpkg-installed-ebsd-lib"
},
"VCPKG_MANIFEST_INSTALL": {
"type": "BOOL",
Expand Down
6 changes: 3 additions & 3 deletions Source/Apps/eq_orientations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ std::vector<double> ReadDoublesFromCSV(const std::string& filePath)
int main(int argc, char* argv[])
{
std::vector<double> q = ReadDoublesFromCSV(argv[1]);
for(int i = 0; i < q.size(); i=i+8)
for(int i = 0; i < q.size(); i = i + 8)
{
std::cout << (i/8) << ": ";
v2({q[i], q[i+1], q[i+2], q[i+3]}, {q[i+4], q[i+5], q[i+6], q[i+7]});
std::cout << (i / 8) << ": ";
v2({q[i], q[i + 1], q[i + 2], q[i + 3]}, {q[i + 4], q[i + 5], q[i + 6], q[i + 7]});
}
}
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/AbstractEbsdFields.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/AbstractEbsdFields.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/EbsdDataArray.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/EbsdDataArray.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
7 changes: 5 additions & 2 deletions Source/EbsdLib/Core/EbsdLibConstants.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down Expand Up @@ -283,7 +283,10 @@ inline constexpr double r24 = 4.8989794855663560; // sqrt(24)
inline constexpr double tfit[16] = {1.00000000000188520, -0.50000000021948470, -0.0249999921275931260, -0.0039287015447813740, -0.00081527015354504380, -0.00020095004261197120,
-0.000023979867760717560, -0.000082028689266058410, +0.000124487150420900920, -0.00017491142148225770, +0.00017034819341400540, -0.000120620650041168280,
+0.0000597197058686608260, -0.000019807567239656470, +0.0000039537146842128740, -0.000000365550014397195440};
inline constexpr double BP[6] = {0.0, 1.0, 0.5773502691896260, 0.4142135623730950, 0.0, 0.2679491924311230}; // used for Fundamental Zone determination in so3 module
inline constexpr double BP[12] = {
0.0, 1.0, 0.577350269189626, 0.414213562373095, 0.0, 0.267949192431123, 0.0, 0.198912367379658, 0.0, 0.158384440324536, 0.0, 0.131652497587396}; // used for Fundamental Zone determination in so3
// module

} // namespace LambertParametersType

// Add some shortened namespace alias
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/EbsdLibDLLExport.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/EbsdMacros.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/EbsdSetGetMacros.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/EbsdTransform.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/EbsdTransform.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/Orientation.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/OrientationMath.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/OrientationMath.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/Core/OrientationTransformation.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
16 changes: 15 additions & 1 deletion Source/EbsdLib/Core/Quaternion.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ class Quaternion
}

/**
* @brief heck if this is a unit quaternion
* @brief check if this is a unit quaternion
* @param tolerance
* @return
*/
Expand All @@ -469,6 +469,20 @@ class Quaternion
return {m_X / l, m_Y / l, m_Z / l, m_W / l};
}

/**
* @brief Converts the quaternion into its normalized values (x/L, y/L, z/L, w/L) where "L"
* is the "length" of the quaternion and the Scalar part is always positive
* @return
*/
Quaternion normalize() const
{
if(m_W >= 0)
{
return unitQuaternion();
}
return unitQuaternion().negate();
}

/**
* @brief GetMisorientationVector Converts the quaternion into a misorientation vector in the reference frame of the quaternion
* @return misoVec
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/AngleFileLoader.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/AngleFileLoader.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/EbsdHeaderEntry.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/EbsdImporter.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/EbsdReader.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/EbsdReader.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/H5EbsdVolumeInfo.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/H5EbsdVolumeInfo.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/H5EbsdVolumeReader.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/H5EbsdVolumeReader.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/CtfConstants.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/CtfFields.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/CtfFields.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/CtfHeaderEntry.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/CtfPhase.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/CtfPhase.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/CtfReader.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/CtfReader.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/DataParser.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/H5CtfImporter.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/H5CtfImporter.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/H5CtfReader.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/H5CtfReader.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/H5CtfVolumeReader.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/HKL/H5CtfVolumeReader.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/TSL/AngConstants.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/TSL/AngFields.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/TSL/AngFields.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/TSL/AngHeaderEntry.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/TSL/AngPhase.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion Source/EbsdLib/IO/TSL/AngPhase.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ============================================================================
* Copyright (c) 2009-2016 BlueQuartz Software, LLC
* Copyright (c) 2009-2025 BlueQuartz Software, LLC
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
Expand Down
Loading