diff --git a/Source/SenseGloveCore/Private/SGCore/SGAnatomy.cpp b/Source/SenseGloveCore/Private/SGCore/SGAnatomy.cpp index 2c8c3d2f..045bac00 100644 --- a/Source/SenseGloveCore/Private/SGCore/SGAnatomy.cpp +++ b/Source/SenseGloveCore/Private/SGCore/SGAnatomy.cpp @@ -68,14 +68,14 @@ float FSGAnatomy::GetThumbJointLimit(const bool bRightHanded, const int32 Joint, return SGCoreImpl_FSGAnatomyImpl_GetThumbJointLimit(bRightHanded, Joint, Movement, bMax); } -float FSGAnatomy::NormalizeFingerFlex(const float FlexionInRadians) +float FSGAnatomy::NormalizeFingerFlexion(const float FlexionInRadians) { - return SGCoreImpl_FSGAnatomyImpl_NormalizeFingerFlex(FlexionInRadians); + return SGCoreImpl_FSGAnatomyImpl_NormalizeFingerFlexion(FlexionInRadians); } -float FSGAnatomy::NormalizeThumbFlex(float FlexionInRadians) +float FSGAnatomy::NormalizeThumbFlexion(const float FlexionInRadians) { - return SGCoreImpl_FSGAnatomyImpl_NormalizeThumbFlex(FlexionInRadians); + return SGCoreImpl_FSGAnatomyImpl_NormalizeThumbFlexion(FlexionInRadians); } TArray> FSGAnatomy::GetDefaultHandAngles(const bool bRightHanded) @@ -85,21 +85,21 @@ TArray> FSGAnatomy::GetDefaultHandAngles(const bool bRightHanded return MoveTemp(OutAnglesContainer.Array); } -TArray> FSGAnatomy::GetFlatHandAngles(bool bRightHanded) +TArray> FSGAnatomy::GetFlatHandAngles(const bool bRightHanded) { FSGIC_TArray_TArray_FVector OutAnglesContainer; SGCoreImpl_FSGAnatomyImpl_GetFlatHandAngles(&OutAnglesContainer, bRightHanded); return MoveTemp(OutAnglesContainer.Array); } -TArray> FSGAnatomy::GetThumbsUpHandAngles(bool bRightHanded) +TArray> FSGAnatomy::GetThumbsUpHandAngles(const bool bRightHanded) { FSGIC_TArray_TArray_FVector OutAnglesContainer; SGCoreImpl_FSGAnatomyImpl_GetThumbsUpHandAngles(&OutAnglesContainer, bRightHanded); return MoveTemp(OutAnglesContainer.Array); } -TArray> FSGAnatomy::GetFistHandAngles(bool bRightHanded) +TArray> FSGAnatomy::GetFistHandAngles(const bool bRightHanded) { FSGIC_TArray_TArray_FVector OutAnglesContainer; SGCoreImpl_FSGAnatomyImpl_GetFistHandAngles(&OutAnglesContainer, bRightHanded); diff --git a/Source/SenseGloveCore/Private/SGCore/SGBasicHandModel.cpp b/Source/SenseGloveCore/Private/SGCore/SGBasicHandModel.cpp index 667d6b2f..a0303ca8 100644 --- a/Source/SenseGloveCore/Private/SGCore/SGBasicHandModel.cpp +++ b/Source/SenseGloveCore/Private/SGCore/SGBasicHandModel.cpp @@ -224,10 +224,10 @@ TArray USGBasicHandModel::GetBaseJointPositions() return MoveTemp(OutPositionsContainer.Array); } -TArray USGBasicHandModel::GetBaseJointRotations() +TArray USGBasicHandModel::GetBaseJointAngles() { FSGIC_TArray_FVector OutRotationsContainer; - SGCoreImpl_FSGBasicHandModelImpl_GetBaseJointRotations(&OutRotationsContainer); + SGCoreImpl_FSGBasicHandModelImpl_GetBaseJointAngles(&OutRotationsContainer); return MoveTemp(OutRotationsContainer.Array); } diff --git a/Source/SenseGloveCore/Public/SGCore/SGAnatomy.h b/Source/SenseGloveCore/Public/SGCore/SGAnatomy.h index a60de771..cb968c29 100644 --- a/Source/SenseGloveCore/Public/SGCore/SGAnatomy.h +++ b/Source/SenseGloveCore/Public/SGCore/SGAnatomy.h @@ -59,9 +59,9 @@ public: static float GetThumbJointLimit(bool bRightHanded, int32 Joint, int32 Movement, bool bMax); - static float NormalizeFingerFlex(float FlexionInRadians); + static float NormalizeFingerFlexion(float FlexionInRadians); - static float NormalizeThumbFlex(float FlexionInRadians); + static float NormalizeThumbFlexion(float FlexionInRadians); static TArray> GetDefaultHandAngles(bool bRightHanded); diff --git a/Source/SenseGloveCore/Public/SGCore/SGBasicHandModel.h b/Source/SenseGloveCore/Public/SGCore/SGBasicHandModel.h index 00ba8cba..ce7612db 100644 --- a/Source/SenseGloveCore/Public/SGCore/SGBasicHandModel.h +++ b/Source/SenseGloveCore/Public/SGCore/SGBasicHandModel.h @@ -102,7 +102,7 @@ public: static TArray GetBaseJointPositions(); - static TArray GetBaseJointRotations(); + static TArray GetBaseJointAngles(); private: struct FImpl; diff --git a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGAnatomyImpl.cpp b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGAnatomyImpl.cpp index 5133df51..05007dfb 100644 --- a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGAnatomyImpl.cpp +++ b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGAnatomyImpl.cpp @@ -72,14 +72,14 @@ float FSGAnatomyImpl::GetThumbJointLimit( return FAnatomyType::GetThumbJointLimit(bRightHanded, Joint, Movement, bMax); } -float FSGAnatomyImpl::NormalizeFingerFlex(const float FlexionInRadians) +float FSGAnatomyImpl::NormalizeFingerFlexion(const float FlexionInRadians) { - return FAnatomyType::NormalizeFingerFlex(FlexionInRadians); + return FAnatomyType::NormalizeFingerFlexion(FlexionInRadians); } -float FSGAnatomyImpl::NormalizeThumbFlex(const float FlexionInRadians) +float FSGAnatomyImpl::NormalizeThumbFlexion(const float FlexionInRadians) { - return FAnatomyType::NormalizeThumbFlex(FlexionInRadians); + return FAnatomyType::NormalizeThumbFlexion(FlexionInRadians); } TArray> FSGAnatomyImpl::GetDefaultHandAngles(const bool bRightHanded) diff --git a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGBasicHandModelImpl.cpp b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGBasicHandModelImpl.cpp index 538203c1..cbac12af 100644 --- a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGBasicHandModelImpl.cpp +++ b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGBasicHandModelImpl.cpp @@ -108,13 +108,13 @@ const TArray& FSGBasicHandModelImpl::GetBaseJointPositions() return BaseJointPositions; } -const TArray& FSGBasicHandModelImpl::GetBaseJointRotations() +const TArray& FSGBasicHandModelImpl::GetBaseJointAngles() { - static const TArray BaseJointRotations{ + static const TArray BaseJointAngles{ FSGArrayUtils::FromStdVector( - FBasicHandModelType::GetBaseJointRotations()) + FBasicHandModelType::GetBaseJointAngles()) }; - return BaseJointRotations; + return BaseJointAngles; } FSGBasicHandModelImpl::FSGBasicHandModelImpl() diff --git a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGExportedFunctions.cpp b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGExportedFunctions.cpp index 949a390e..f93c47a9 100644 --- a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGExportedFunctions.cpp +++ b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGExportedFunctions.cpp @@ -169,16 +169,16 @@ float SGCoreImpl_FSGAnatomyImpl_GetThumbJointLimit( return FSGAnatomyImpl::GetThumbJointLimit(bRightHanded, Joint, Movement, bMax); } -float SGCoreImpl_FSGAnatomyImpl_NormalizeFingerFlex( +float SGCoreImpl_FSGAnatomyImpl_NormalizeFingerFlexion( const float FlexionInRadians) { - return FSGAnatomyImpl::NormalizeFingerFlex(FlexionInRadians); + return FSGAnatomyImpl::NormalizeFingerFlexion(FlexionInRadians); } -float SGCoreImpl_FSGAnatomyImpl_NormalizeThumbFlex( +float SGCoreImpl_FSGAnatomyImpl_NormalizeThumbFlexion( const float FlexionInRadians) { - return FSGAnatomyImpl::NormalizeThumbFlex(FlexionInRadians); + return FSGAnatomyImpl::NormalizeThumbFlexion(FlexionInRadians); } void SGCoreImpl_FSGAnatomyImpl_GetDefaultHandAngles( @@ -246,10 +246,10 @@ void SGCoreImpl_FSGBasicHandModelImpl_GetBaseJointPositions( StaticCast(OutPositions)->Array = FSGBasicHandModelImpl::GetBaseJointPositions(); } -void SGCoreImpl_FSGBasicHandModelImpl_GetBaseJointRotations( +void SGCoreImpl_FSGBasicHandModelImpl_GetBaseJointAngles( void* OutRotations) { - StaticCast(OutRotations)->Array = FSGBasicHandModelImpl::GetBaseJointRotations(); + StaticCast(OutRotations)->Array = FSGBasicHandModelImpl::GetBaseJointAngles(); } void SGCoreImpl_FSGBasicHandModelImpl_ctor( diff --git a/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGAnatomyImpl.h b/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGAnatomyImpl.h index 7fc727d1..0dcd8c1c 100644 --- a/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGAnatomyImpl.h +++ b/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGAnatomyImpl.h @@ -64,9 +64,9 @@ public: static float GetThumbJointLimit(bool bRightHanded, int32 Joint, int32 Movement, bool bMax); - static float NormalizeFingerFlex(float FlexionInRadians); + static float NormalizeFingerFlexion(float FlexionInRadians); - static float NormalizeThumbFlex(float FlexionInRadians); + static float NormalizeThumbFlexion(float FlexionInRadians); public: static TArray> GetDefaultHandAngles(bool bRightHanded); diff --git a/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGBasicHandModelImpl.h b/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGBasicHandModelImpl.h index 11f02f4a..f8fb0908 100644 --- a/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGBasicHandModelImpl.h +++ b/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGBasicHandModelImpl.h @@ -65,7 +65,7 @@ public: static const TArray& GetBaseJointPositions(); - static const TArray& GetBaseJointRotations(); + static const TArray& GetBaseJointAngles(); private: struct FImpl; diff --git a/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGExportedFunctions.h b/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGExportedFunctions.h index 4ab8131e..d1a7f6f6 100644 --- a/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGExportedFunctions.h +++ b/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGExportedFunctions.h @@ -88,10 +88,10 @@ SENSEGLOVECOREIMPL_PUBLIC_API float SGCoreImpl_FSGAnatomyImpl_GetThumbJointLimit int32 Movement, bool bMax); -SENSEGLOVECOREIMPL_PUBLIC_API float SGCoreImpl_FSGAnatomyImpl_NormalizeFingerFlex( +SENSEGLOVECOREIMPL_PUBLIC_API float SGCoreImpl_FSGAnatomyImpl_NormalizeFingerFlexion( float FlexionInRadians); -SENSEGLOVECOREIMPL_PUBLIC_API float SGCoreImpl_FSGAnatomyImpl_NormalizeThumbFlex( +SENSEGLOVECOREIMPL_PUBLIC_API float SGCoreImpl_FSGAnatomyImpl_NormalizeThumbFlexion( float FlexionInRadians); SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGAnatomyImpl_GetDefaultHandAngles( @@ -128,7 +128,7 @@ SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGBasicHandModelImpl_GetBaseFinge SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGBasicHandModelImpl_GetBaseJointPositions( void* OutPositions); -SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGBasicHandModelImpl_GetBaseJointRotations( +SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGBasicHandModelImpl_GetBaseJointAngles( void* OutRotations); SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGBasicHandModelImpl_ctor( diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGAnatomyKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGAnatomyKismetLibrary.cpp index a7442bfc..45905e4d 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGAnatomyKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGAnatomyKismetLibrary.cpp @@ -70,14 +70,14 @@ float USGAnatomyKismetLibrary::GetThumbJointLimit(const bool bRightHanded, const return FSGAnatomy::GetThumbJointLimit(bRightHanded, Joint, Movement, bMax); } -float USGAnatomyKismetLibrary::NormalizeFingerFlex(const float FlexionInRadians) +float USGAnatomyKismetLibrary::NormalizeFingerFlexion(const float FlexionInRadians) { - return FSGAnatomy::NormalizeFingerFlex(FlexionInRadians); + return FSGAnatomy::NormalizeFingerFlexion(FlexionInRadians); } -float USGAnatomyKismetLibrary::NormalizeThumbFlex(const float FlexionInRadians) +float USGAnatomyKismetLibrary::NormalizeThumbFlexion(const float FlexionInRadians) { - return FSGAnatomy::NormalizeThumbFlex(FlexionInRadians); + return FSGAnatomy::NormalizeThumbFlexion(FlexionInRadians); } TArray USGAnatomyKismetLibrary::GetDefaultHandAngles(const bool bRightHanded) diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGBasicHandModelKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGBasicHandModelKismetLibrary.cpp index d2aa2c1f..d8454121 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGBasicHandModelKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGBasicHandModelKismetLibrary.cpp @@ -89,9 +89,9 @@ TArray USGBasicHandModelKismetLibrary::GetBaseJointPositions() return USGBasicHandModel::GetBaseJointPositions(); } -TArray USGBasicHandModelKismetLibrary::GetBaseJointRotations() +TArray USGBasicHandModelKismetLibrary::GetBaseJointAngles() { - return USGBasicHandModel::GetBaseJointRotations(); + return USGBasicHandModel::GetBaseJointAngles(); } bool USGBasicHandModelKismetLibrary::IsRight(const USGBasicHandModel* BasicHandModel) diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGAnatomyKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGAnatomyKismetLibrary.h index edc3ce4b..258c6a5f 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGAnatomyKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGAnatomyKismetLibrary.h @@ -68,10 +68,10 @@ public: static float GetThumbJointLimit(bool bRightHanded, int32 Joint, int32 Movement, bool bMax); UFUNCTION(BlueprintCallable, Category="SenseGlove | Core | Kinematics | Anatomy") - static float NormalizeFingerFlex(float FlexionInRadians); + static float NormalizeFingerFlexion(float FlexionInRadians); UFUNCTION(BlueprintCallable, Category="SenseGlove | Core | Kinematics | Anatomy") - static float NormalizeThumbFlex(float FlexionInRadians); + static float NormalizeThumbFlexion(float FlexionInRadians); UFUNCTION(BlueprintCallable, Category="SenseGlove | Core | Kinematics | Anatomy") static TArray GetDefaultHandAngles(bool bRightHanded); diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGBasicHandModelKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGBasicHandModelKismetLibrary.h index d6dc41e7..215afb82 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGBasicHandModelKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGBasicHandModelKismetLibrary.h @@ -91,7 +91,7 @@ public: static TArray GetBaseJointPositions(); UFUNCTION(BlueprintCallable, Category="SenseGlove | Core | Kinematics | Basic Hand Model") - static TArray GetBaseJointRotations(); + static TArray GetBaseJointAngles(); UFUNCTION(BlueprintPure, Category="SenseGlove | Core | Kinematics | Basic Hand Model") static bool IsRight(const USGBasicHandModel* BasicHandModel); diff --git a/Source/ThirdParty/include/SenseGlove/Connect/Connection.hpp b/Source/ThirdParty/include/SenseGlove/Connect/Connection.hpp index d96f52a3..a6a115f9 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/Connection.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/Connection.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59f6a309227c5049e138810d8bea1ab1e6db458a25463166372b71fba2407acd -size 4950 +oid sha256:e9b414d889653831cea27801e76b547e3523d8bef60d9f78b5d92d00bfa6080c +size 5128 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/ConnectionData.hpp b/Source/ThirdParty/include/SenseGlove/Connect/ConnectionData.hpp index 7659d6cd..c018d607 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/ConnectionData.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/ConnectionData.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:271b1f83d014aa48a3d5a0b80fd81d5090f9a6d77cac9bfef6732feabc7d6ae2 -size 2000 +oid sha256:19abcedf4dbd10f4695e604e89318baaf05c9d3b66b273c738129b060e82b5b1 +size 2091 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/ConnectionFactory.hpp b/Source/ThirdParty/include/SenseGlove/Connect/ConnectionFactory.hpp index 0e4978ee..39f9bbf3 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/ConnectionFactory.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/ConnectionFactory.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c08fe01de1d62eb11df3cbdc622c24898716f5cb98fa1147e580b084ce0ee01a -size 760 +oid sha256:e4c9e81b0ffd353fe0c20651d90680cc7d0db41bc64c7862d3470c6a163b4bfe +size 798 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/ConnectionTester.hpp b/Source/ThirdParty/include/SenseGlove/Connect/ConnectionTester.hpp index 6f6e159f..15f2580f 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/ConnectionTester.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/ConnectionTester.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9d72df37826892f2bf7c665f6e12edd9c4de9d9868d021b3a92c7ec33b626f3 -size 1451 +oid sha256:86dc73d00197b71bd0117794cc48455a721a5ddd14aa6260410cd78002642bd1 +size 1520 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/ConnectionsTracker.hpp b/Source/ThirdParty/include/SenseGlove/Connect/ConnectionsTracker.hpp index 3a478255..7689e60c 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/ConnectionsTracker.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/ConnectionsTracker.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:72856422be54254533aec5fe6a4c18d00d977bf0c50c00ca504f40eceac0f961 -size 2322 +oid sha256:c8aee144c8406ec1ba34b4710255b994da2338b539e5558479e3bf26955124ee +size 2397 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/Debugger.hpp b/Source/ThirdParty/include/SenseGlove/Connect/Debugger.hpp index 832eefb9..d129bcba 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/Debugger.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/Debugger.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17a8c82094d67f4e8ce3a12049b616ed846e2f356de336cfee4c51594a8d5abe -size 2727 +oid sha256:5ec825b4cfc1e2254790839baf0aabd69fcc430e9ae95141164bf331827a795b +size 2822 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/DeviceScanner.hpp b/Source/ThirdParty/include/SenseGlove/Connect/DeviceScanner.hpp index affe1ed8..6dac22b0 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/DeviceScanner.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/DeviceScanner.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0460742979c4538fb93d22808416aa1465ac15b4e8c850656e8be91c774eb469 -size 2342 +oid sha256:d74f66997c8540aee818ee5d748ef8e875334a027551341f90785ce860e2fccf +size 2415 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/ExitCodes.hpp b/Source/ThirdParty/include/SenseGlove/Connect/ExitCodes.hpp index 622932f5..b663897d 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/ExitCodes.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/ExitCodes.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ec24b505d597a7d16c5f6bfe060ae5532dbfbf638e86def87ddffb9b4c96cd9 -size 2414 +oid sha256:763f0e35ed2e48d1d67c35dda0071f6a76a21948e60418bb24c6953eeb755f61 +size 2479 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/IdResponse.hpp b/Source/ThirdParty/include/SenseGlove/Connect/IdResponse.hpp index 450a5775..00c86903 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/IdResponse.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/IdResponse.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7fa62a37bb79d19f2b73083f058218c6743c0f1d5489e1e693ab32acdd54cd41 -size 2205 +oid sha256:2fc31cec9ce1e51e5ce447e4a0b5301c9b6a9ae4c14362659bf9f451f153b50b +size 2289 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/IpcCommand.hpp b/Source/ThirdParty/include/SenseGlove/Connect/IpcCommand.hpp index aa7b91d8..4187430a 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/IpcCommand.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/IpcCommand.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc927cb9e520eec3e2fccdfe74d8ae5a2d003f7420783bdbcf7bc9ffc5ed61bd -size 1944 +oid sha256:98d7ee84e1ddf04751a9fd56e17ef7ade14493ea50229d4afde8dca491c95bb4 +size 2027 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/NewSGDevice.hpp b/Source/ThirdParty/include/SenseGlove/Connect/NewSGDevice.hpp index 3811fed2..307f7c08 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/NewSGDevice.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/NewSGDevice.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77c8de57f98a5908e8f3c885b505655756bfe1fadfff78b300ccecf08f184a04 -size 1817 +oid sha256:309199164c14d8817b65a97e867706289abfb0836eaf924d21ec8eaf34519c5a +size 1890 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/Platform.hpp b/Source/ThirdParty/include/SenseGlove/Connect/Platform.hpp index a434a47e..81b98319 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/Platform.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/Platform.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbba9c7f28633e3ff30a88eea91a19dbc027570eba954dc0598f9645b0a6758c -size 4215 +oid sha256:cf68c6434c884f579639b35d589fb4ae059c0c6eb9b4ddb3cdfe186c2a8c272c +size 4338 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/PortInfo.hpp b/Source/ThirdParty/include/SenseGlove/Connect/PortInfo.hpp index aa5fdf22..0e0e7ecb 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/PortInfo.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/PortInfo.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c01da3f66b730acb09bb53c4e6683635239722992868c2fd5d90f6c48d0b7ab0 -size 2743 +oid sha256:e413f56dbf4bc441e21ddcb8537d39fe924fde124e381c3c2a8d815bbff05ada +size 2841 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/SGConnect.hpp b/Source/ThirdParty/include/SenseGlove/Connect/SGConnect.hpp index 813df49e..f526f495 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/SGConnect.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/SGConnect.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ca59c2d98f2ab8fc5cc6d0322cc4f9f8672e036bb1b5cbf6fd3eface2fc466d -size 8747 +oid sha256:1080a85b5476a0256243de62fe00f0bc39045635f886b1d315448a59d715aa7d +size 8951 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/SGDevice.hpp b/Source/ThirdParty/include/SenseGlove/Connect/SGDevice.hpp index 168712f0..a659711b 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/SGDevice.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/SGDevice.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:53804522a526967e0d7f8ad3b707072e0fda02077267e3732d029cd2b7c84879 -size 2995 +oid sha256:f37ab374e074a82203eb3259dcc0036744d437f1a2638224a04440b26c6737cc +size 3082 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/SerialConnection.hpp b/Source/ThirdParty/include/SenseGlove/Connect/SerialConnection.hpp index fe4bc191..313e4a4f 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/SerialConnection.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/SerialConnection.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:026bde30f15262e65b76a3547cc9930fb8f251e38d8cd4cc96282af3e479e826 -size 2496 +oid sha256:458aaab16ec7d04afee98ae44718225e4a550558be66b6c2a82a0ef793dd2388 +size 2585 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/SerialPorts.hpp b/Source/ThirdParty/include/SenseGlove/Connect/SerialPorts.hpp index 950390f0..986539c8 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/SerialPorts.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/SerialPorts.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:50d061c729d70c4fe79beea5b1d8300ed8e4816d919590739cdd356eb199bdb3 -size 1859 +oid sha256:6d193fe69a0094863742995f7abde90d8b75e2931bc6b374a51d454e0684937d +size 1914 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/SharedMem.hpp b/Source/ThirdParty/include/SenseGlove/Connect/SharedMem.hpp index 03716516..9487ad8e 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/SharedMem.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/SharedMem.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4f8b25e73f9a913ffa179ef9ca8ed23e8bd2756fd209c60f9f56a5b0395f133 -size 3373 +oid sha256:9abedebcfb1d2be797d63ff5aab364177e6a9113ee235a8fa25dee4168c15d15 +size 3460 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/StringUtils.hpp b/Source/ThirdParty/include/SenseGlove/Connect/StringUtils.hpp index 396313e4..b224c2c3 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/StringUtils.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/StringUtils.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:acf9d693b990216aef2ffb87e4af456d9a4da39b4572a0b2f3ba7cbc1379bfe1 -size 1685 +oid sha256:63272dc051dd7ddb33c30a8a6ce7cced1c41af6fcafb5bbc41b972f24d4e111b +size 1746 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/TestingState.hpp b/Source/ThirdParty/include/SenseGlove/Connect/TestingState.hpp index e43331db..62908254 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/TestingState.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/TestingState.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf5bf54e265cc6dc93fc16b3da1490991a0aa65866723a82bc55536b0b23cd73 -size 1653 +oid sha256:c05951347609afe2467f3a1ec07be682219a7828f1fa35e740a7b999db5517f2 +size 1718 diff --git a/Source/ThirdParty/include/SenseGlove/Connect/TransmissionMode.hpp b/Source/ThirdParty/include/SenseGlove/Connect/TransmissionMode.hpp index cb74a17a..0a033b2b 100644 --- a/Source/ThirdParty/include/SenseGlove/Connect/TransmissionMode.hpp +++ b/Source/ThirdParty/include/SenseGlove/Connect/TransmissionMode.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d25e287501e7d09f7e8c0a0888c5dc09666d15da692ab6a30438090736566e12 -size 875 +oid sha256:e92e36d524974c612d5fd4ac3f256de18a91e637a44a9e50edc7f14ee14e4d92 +size 909 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Anatomy.hpp b/Source/ThirdParty/include/SenseGlove/Core/Anatomy.hpp index a84acd64..549119d5 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Anatomy.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Anatomy.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e77af0487c7e7bdf87fbce5a575ba243970d8f7e8e137f579374988c828ed0e7 -size 3065 +oid sha256:1966c425647afbb19e81cd0aee79ec77dccc2f1dca06cad30b5de1f53d03d035 +size 3167 diff --git a/Source/ThirdParty/include/SenseGlove/Core/BasicHandModel.hpp b/Source/ThirdParty/include/SenseGlove/Core/BasicHandModel.hpp index b9474eeb..a98e4440 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/BasicHandModel.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/BasicHandModel.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e91f31faa5dbf9264035e876c2449f900c6485f1f0b7aeb497b69c17228a2bc1 -size 7811 +oid sha256:6c75ff2cf636e41d0d5ddc163c4960bf2d8f0bfb5dba51d7d54b41af2d841145 +size 8016 diff --git a/Source/ThirdParty/include/SenseGlove/Core/BetaDevice.hpp b/Source/ThirdParty/include/SenseGlove/Core/BetaDevice.hpp index 546ab2d2..49348794 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/BetaDevice.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/BetaDevice.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f99765ee13bba82a3a5d5bc481fb1d3088780d92c1e795ba6968e5c6ef9fe02 -size 3431 +oid sha256:56e5c43c79595374ed550e950586744d94fa05e380788a4afc4bd235e3737e84 +size 3539 diff --git a/Source/ThirdParty/include/SenseGlove/Core/BuzzCommand.hpp b/Source/ThirdParty/include/SenseGlove/Core/BuzzCommand.hpp index bb9e817c..f14cdfea 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/BuzzCommand.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/BuzzCommand.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da94aa900c777d438042fc2963d1742c54ea35c55e48213abe341c4aa2ff10a3 -size 2795 +oid sha256:7061d08929bf6d7ec16400b54981f9f4b5dc99332b45e5e0c1ca289f094ed2f1 +size 2895 diff --git a/Source/ThirdParty/include/SenseGlove/Core/CalibrationDataPoint.hpp b/Source/ThirdParty/include/SenseGlove/Core/CalibrationDataPoint.hpp index 11727e99..4b1cfff1 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/CalibrationDataPoint.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/CalibrationDataPoint.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8075bc55751c0e14f674725d76c04b254d8c20413d349306587a1c406ff18a0 -size 2397 +oid sha256:825af1358056fb5600cf9fbc2d2ad16a263ec32a45f4b4e540c85934bef1377e +size 2495 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Communications.hpp b/Source/ThirdParty/include/SenseGlove/Core/Communications.hpp index 6a1ab1bf..ab603a78 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Communications.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Communications.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38d331b743d8c5c6f6de85be93f875c9e954e4871618406a294867248918e56a -size 2432 +oid sha256:4bd311ee95aa30657c317edf41b211603076c2cdd4dc1040e7ec1abe06dc8400 +size 2516 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Debugger.hpp b/Source/ThirdParty/include/SenseGlove/Core/Debugger.hpp index 2b82726d..20261daa 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Debugger.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Debugger.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b8adeb80d18778b05dc8f0feb332ec15d3eac5583de07a2a3542fb14cf25f76 -size 2045 +oid sha256:976f0311c7b55e7cf87041b789fa2818f33cbfff0d346a78482b5f13784fe072 +size 2120 diff --git a/Source/ThirdParty/include/SenseGlove/Core/DeviceList.hpp b/Source/ThirdParty/include/SenseGlove/Core/DeviceList.hpp index 5a598338..ff2e9d4d 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/DeviceList.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/DeviceList.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b482c6d00a7e18013887d8755644c600deb7934522f62cd1cc2a8e6a72b17ab -size 4212 +oid sha256:13b9d286faf90fcc3d0a0c2b4f28f02658a90893525684390a01799d246d210a +size 4325 diff --git a/Source/ThirdParty/include/SenseGlove/Core/DeviceModel.hpp b/Source/ThirdParty/include/SenseGlove/Core/DeviceModel.hpp index 09be8cde..c3b8e1b4 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/DeviceModel.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/DeviceModel.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a683b734d08a4cecc23c616e8ce3d9a3699c227191854e756282984a614bf72 -size 3503 +oid sha256:7bdef0a84a89a5fead13830ab37a624ca6920de2f94342742921555f4a9234ed +size 3626 diff --git a/Source/ThirdParty/include/SenseGlove/Core/DeviceTypes.hpp b/Source/ThirdParty/include/SenseGlove/Core/DeviceTypes.hpp index 1e6602f4..d5350e69 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/DeviceTypes.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/DeviceTypes.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:74b02cb6c5f11ee3636ce27b1b47858bb38abe62d57797c8975bfaace5d840ff -size 1145 +oid sha256:945cd3193f12a45f84c97bd09ef23a355658160dfd855a13c18d49aca77d1e10 +size 1186 diff --git a/Source/ThirdParty/include/SenseGlove/Core/FileIO.hpp b/Source/ThirdParty/include/SenseGlove/Core/FileIO.hpp index d17d67f3..e817c0fd 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/FileIO.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/FileIO.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6745fe0f443ffcfb8bd275a178ef9525b9c423b3153e3e5a3813bee1a266eb5 -size 2527 +oid sha256:9a6516b2d1b1a7a9855f2c095e738272fa23a786a90e0efabcb4b393862af110 +size 2603 diff --git a/Source/ThirdParty/include/SenseGlove/Core/FingerCommand.hpp b/Source/ThirdParty/include/SenseGlove/Core/FingerCommand.hpp index caeaf3c2..90bfda46 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/FingerCommand.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/FingerCommand.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30533115dc2cbb99a65379aa45fedf4be08c8cec23a344f069cc82b60638c6e1 -size 2351 +oid sha256:7a6c5df3a4ddba1b70665ad239c763e7a12e2d446cefbd15da89922117c18d5e +size 2451 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Fingers.hpp b/Source/ThirdParty/include/SenseGlove/Core/Fingers.hpp index ea32c369..c4471c3f 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Fingers.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Fingers.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0895902647831f46d19587cb8b9fac55826b4585db708e2db8da95570bf17e0c -size 2533 +oid sha256:07b956c9018624c5f4d9358b52146aae2141e55f07c377de75a94252ddcd4542 +size 2620 diff --git a/Source/ThirdParty/include/SenseGlove/Core/FloatUtils.hpp b/Source/ThirdParty/include/SenseGlove/Core/FloatUtils.hpp index 2a114152..2a814be9 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/FloatUtils.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/FloatUtils.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d32d34a266d5641bbb91a2b486a5c7b1af5b68f52701afcbd180f090c4fc60ed -size 970 +oid sha256:880bf218032496d2e97a71c2eda3a8ca34c772e13c6a3dd91c825b6e60c38c10 +size 1017 diff --git a/Source/ThirdParty/include/SenseGlove/Core/ForceFeedbackCommand.hpp b/Source/ThirdParty/include/SenseGlove/Core/ForceFeedbackCommand.hpp index 087cc5f9..11e677ce 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/ForceFeedbackCommand.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/ForceFeedbackCommand.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4bd935752c34f4213eedb20eff331d918c05c3422382a0d4fa29de32b4dd377f -size 3118 +oid sha256:595c0cc7027b1543e5e5f60fff6cb259a75a68b7ec8362f8289b905baa6fbc62 +size 3223 diff --git a/Source/ThirdParty/include/SenseGlove/Core/HandInterpolator.hpp b/Source/ThirdParty/include/SenseGlove/Core/HandInterpolator.hpp index b7532f23..12a14814 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/HandInterpolator.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/HandInterpolator.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb41d775a2171b1110bdb6fd1bd657eb6080d5947d17c264b161f8abc3d1d745 -size 6826 +oid sha256:b86b6590aae333a74e841e90142ada3ffa2060bb002e74ac8331824710a999c9 +size 7004 diff --git a/Source/ThirdParty/include/SenseGlove/Core/HandPose.hpp b/Source/ThirdParty/include/SenseGlove/Core/HandPose.hpp index 04ea83d7..71f7917e 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/HandPose.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/HandPose.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f13a548cc3ec1275ce0ca8b1b645bec237844e368f579d008c3e61f8e4a1dbac -size 8197 +oid sha256:ee1f04557b04af800df70c421f4b3ffa290d0cd791221781f35f23e61c941c7a +size 8396 diff --git a/Source/ThirdParty/include/SenseGlove/Core/HandProfile.hpp b/Source/ThirdParty/include/SenseGlove/Core/HandProfile.hpp index 48a68f12..aa865c4f 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/HandProfile.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/HandProfile.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc0fb68bf4c422519c030e8c98f497105f3181057657c7977b7e48d89979fd82 -size 5511 +oid sha256:a47bd861b2e0a4fff0345e380c00d0e11e597abef1aa277d15c38c9aa3bf5b79 +size 5677 diff --git a/Source/ThirdParty/include/SenseGlove/Core/HapticGlove.hpp b/Source/ThirdParty/include/SenseGlove/Core/HapticGlove.hpp index e189f8a2..3def6bad 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/HapticGlove.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/HapticGlove.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb52cd37ec048b0d633627aae698998b9bc95dddd3f10cd291a56c9ed5f5dc37 -size 12050 +oid sha256:0de5def16a9d5fb92c407c9f2cbf78ac19a5418cd25d6e7c5be24f21dc1bc3f3 +size 12341 diff --git a/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCalibrationCheck.hpp b/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCalibrationCheck.hpp index c1eed11d..86b117ca 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCalibrationCheck.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCalibrationCheck.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2cd9740f4b937cfa178c21badeb7f5672ce7b9d296941301ef84589ba5fba003 -size 6646 +oid sha256:8ec4263baabf012122dbc92c7d15f460057244a2901601b2feb7783fadacd28c +size 6816 diff --git a/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCalibrationSequence.hpp b/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCalibrationSequence.hpp index 013891a7..d5d53314 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCalibrationSequence.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCalibrationSequence.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28baaf5b773330e6f3cc82d4550d6521472cc0db05ea0514bf1deb877bc6d8d2 -size 7515 +oid sha256:f0da3378c8bf41a1461511eeb666ab578b2760efe30eaf32bd65ea504cfd1c7c +size 7717 diff --git a/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCommandBuffer.hpp b/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCommandBuffer.hpp index 06bc3e91..a312e0b0 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCommandBuffer.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/HapticGloveCommandBuffer.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:53eea1f8b830e8b942672335aa7d8319514919712b7e73caef107821637e6f7f -size 7165 +oid sha256:3183accaebd81ea2f4f0789f24721e408045f6ca1871e6aea5349f064f60af08 +size 7340 diff --git a/Source/ThirdParty/include/SenseGlove/Core/HapticGloveHandProfiles.hpp b/Source/ThirdParty/include/SenseGlove/Core/HapticGloveHandProfiles.hpp index 3168d5ce..0f31f9e6 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/HapticGloveHandProfiles.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/HapticGloveHandProfiles.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ee53aaf5a7d685719dc58fdb3488f058bfd625b55eefc2391d494dc8bd8613c -size 4139 +oid sha256:d8d190d1745bbe982227f5762e457db4e3d12bcd491b57a677ffc1d04aa64ced +size 4250 diff --git a/Source/ThirdParty/include/SenseGlove/Core/HapticGloveQuickCalibration.hpp b/Source/ThirdParty/include/SenseGlove/Core/HapticGloveQuickCalibration.hpp index 5b962a8d..83766a6a 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/HapticGloveQuickCalibration.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/HapticGloveQuickCalibration.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d180ab193cad837b0143a0fe86e41c1a7dd4dfb9367e324fda92cf3ab24d801 -size 5346 +oid sha256:864750223bf4f091724b9855c1c957fb196b2034dd473caef8f6e85bc1820c47 +size 5497 diff --git a/Source/ThirdParty/include/SenseGlove/Core/InterpolationSet.hpp b/Source/ThirdParty/include/SenseGlove/Core/InterpolationSet.hpp index c68aa53a..22fb475c 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/InterpolationSet.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/InterpolationSet.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9875f251d6c250e9c62b0899835cecd7c1d54565fd09a9ebc8ed59aa4a8e9508 -size 3472 +oid sha256:662e74afcd0f6f31772ec4d2aff19d4df814f2366850fb113d51398c3b7e7e6d +size 3600 diff --git a/Source/ThirdParty/include/SenseGlove/Core/JointKinematics.hpp b/Source/ThirdParty/include/SenseGlove/Core/JointKinematics.hpp index c74ca7db..ced7550d 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/JointKinematics.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/JointKinematics.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9751c7fdef8b68927060a963b53630fe3280a25d594b6812055ddc4f489f64d -size 1602 +oid sha256:7ba48830c75e1202565fa02b94464ece9abc08dc1b33b0b4b025d99e645f1ebd +size 1657 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Library.hpp b/Source/ThirdParty/include/SenseGlove/Core/Library.hpp index 247c3112..d30752c4 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Library.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Library.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6b6f8a4ae00fa3bd93d872db07abc997d8d34f95a63b62d447d7f3cb28f48719 -size 1350 +oid sha256:37e6900abde97b960bfcd88904b34421d16f07a2cd2aef878d97ff3a510f8f4c +size 1408 diff --git a/Source/ThirdParty/include/SenseGlove/Core/MathDefines.hpp b/Source/ThirdParty/include/SenseGlove/Core/MathDefines.hpp index 58a07c93..84a61ce6 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/MathDefines.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/MathDefines.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b51389374c2cd74cacfe8dae67c211ee18252159c1acfbe62b0bcd9aa9de89c -size 505 +oid sha256:44d270c174bc72db68bf0df6454eee193d266ff8b22f0fa1324469fb89fdab04 +size 533 diff --git a/Source/ThirdParty/include/SenseGlove/Core/NovaGlove.hpp b/Source/ThirdParty/include/SenseGlove/Core/NovaGlove.hpp index ea15cd5e..9bb4f832 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/NovaGlove.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/NovaGlove.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fa603587c94f0bc1b6a583d1dba1c09f1786ac6eae0fa2c6feb5cc4baafa236f -size 15018 +oid sha256:f409efe5681dcccabb477ef0f2d7bd0ff3a2e79c6d5b0f547c8c1bc64dc10739 +size 15347 diff --git a/Source/ThirdParty/include/SenseGlove/Core/NovaGloveCalibration.hpp b/Source/ThirdParty/include/SenseGlove/Core/NovaGloveCalibration.hpp index 96dd22e6..807edf6b 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/NovaGloveCalibration.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/NovaGloveCalibration.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc6de24201710a29c0bcf795373960769703c157f15cc47d929c7e7e47b96f10 -size 1852 +oid sha256:c046eb7877a686fdbf0ceb5aed944ffb677248c930e76f083010e698509032a5 +size 1917 diff --git a/Source/ThirdParty/include/SenseGlove/Core/NovaGloveHandProfile.hpp b/Source/ThirdParty/include/SenseGlove/Core/NovaGloveHandProfile.hpp index 557e6c24..500b90b4 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/NovaGloveHandProfile.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/NovaGloveHandProfile.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb5e60b940b68e2a4fd16f7baeb59c0a58c268d19268c98854810c362666ab0b -size 3253 +oid sha256:2391c134f4517207af1fed4787aa7d99d230abb3dd6caa3b7bbd1112ba00de66 +size 3371 diff --git a/Source/ThirdParty/include/SenseGlove/Core/NovaGloveInfo.hpp b/Source/ThirdParty/include/SenseGlove/Core/NovaGloveInfo.hpp index c2c5e062..e705fe2d 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/NovaGloveInfo.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/NovaGloveInfo.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e2eff0b15f8c06cfa6aeb7124f2b0b84d1cf04f8d0970ced34ab202f009a728 -size 5121 +oid sha256:e79c41b21673ba008830dacd10b9dc57a212f9fc1bcf7cedf3a1487bf35bf54a +size 5284 diff --git a/Source/ThirdParty/include/SenseGlove/Core/NovaGloveSensorData.hpp b/Source/ThirdParty/include/SenseGlove/Core/NovaGloveSensorData.hpp index dc6742c0..32cdb536 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/NovaGloveSensorData.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/NovaGloveSensorData.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37c8e69a4cae9c78211735244647b19f7bac1c7c7ee6ad4d793c8e0feafd7220 -size 5427 +oid sha256:f8de33fc905fff81dab27b9f1cb5a6d7d35b1a54e01cff0c3bfcdbbd0f1221bb +size 5599 diff --git a/Source/ThirdParty/include/SenseGlove/Core/NovaGloveVars.hpp b/Source/ThirdParty/include/SenseGlove/Core/NovaGloveVars.hpp index 9c516b5c..fd596eca 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/NovaGloveVars.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/NovaGloveVars.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b0e26e19cca28d605d544a9eaa94e6cdbe39aa4df6ea39f09e773ed4452bb8c0 -size 1148 +oid sha256:9e55903ac681f496d90460604ad3f644289d607c2a910753666b4207a803e2a9 +size 1200 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Platform.hpp b/Source/ThirdParty/include/SenseGlove/Core/Platform.hpp index 484ccf85..ff0c2946 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Platform.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Platform.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e2ad3c1aea8947178c6f7dc2b5de6a0204fd9ed35e3b58c60622d08d08cd31c1 -size 4155 +oid sha256:824e3269d73f098f01c9c198553a7b6bc5e0049e133f9d250924c5adf526911c +size 4275 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Quat.hpp b/Source/ThirdParty/include/SenseGlove/Core/Quat.hpp index 717e6391..25da72cd 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Quat.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Quat.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ffb785e1faebc0937645bd646f44b6c51a22cad5a5ecd4a1cb0bd2042b268fa -size 4538 +oid sha256:c50e5e0d93f926b377515d3937666645c21e8a9b1f626bec91621b300dbb105e +size 4686 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SGDevice.hpp b/Source/ThirdParty/include/SenseGlove/Core/SGDevice.hpp index 7f4c5374..d5da7f94 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SGDevice.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SGDevice.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fddd1d90032514110f626044b52f4523b414fd42acb4c41c21a92c8e2cdb3979 -size 5600 +oid sha256:74c1957726b755b2df7bcc392ec3acb5630aad42b65d77587119c6b246e43240 +size 5771 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SenseCom.hpp b/Source/ThirdParty/include/SenseGlove/Core/SenseCom.hpp index 4e60a63d..13a86fc2 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SenseCom.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SenseCom.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e66102f4e373f41403eb9f54cf6abd646d865bd721184eeb1bb06a0329341940 -size 1555 +oid sha256:664148ec9608ecabf43efc378c6fe676073521c9e69a037b99f1ca73ac856f30 +size 1618 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SenseGlove.hpp b/Source/ThirdParty/include/SenseGlove/Core/SenseGlove.hpp index 4311ad92..c6a35ccb 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SenseGlove.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SenseGlove.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:babc20e94d9217b7789335803905d10c284e700e6ee6b515307bd936282fbfb5 -size 17455 +oid sha256:2f7475a44722760ee720ce5aee1655fc5d356848d031b6e7e1e14955e8042e57 +size 17803 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SenseGloveHandProfile.hpp b/Source/ThirdParty/include/SenseGlove/Core/SenseGloveHandProfile.hpp index 4ec979c8..15200833 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SenseGloveHandProfile.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SenseGloveHandProfile.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9accdb4493b595858a95b26c3c3f46ea31b5fdab90e64b9c9c56655049f67244 -size 4872 +oid sha256:9bdb27a4000b20bc3cc3de13c5b289f1b8ffa219507b08a87fbce74f2697a32f +size 5022 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SenseGloveInfo.hpp b/Source/ThirdParty/include/SenseGlove/Core/SenseGloveInfo.hpp index 3b104498..139e04b8 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SenseGloveInfo.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SenseGloveInfo.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69e3aa30da0bfec328b55149742b6653874fd8646f04aa38f03d6bda7327978d -size 7244 +oid sha256:c3880d73b939912208cacfcd0a80dadf650c5c552851f71f0af404dd629757cd +size 7441 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SenseGlovePose.hpp b/Source/ThirdParty/include/SenseGlove/Core/SenseGlovePose.hpp index 181949c0..af3fd140 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SenseGlovePose.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SenseGlovePose.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df28efae2a9beaa0fc6e6b9648da2e8de33ef2d052cc92b1628b6b7eb328a3ec -size 5209 +oid sha256:4f37554a80e547e4ece68850262dc17f591bd1221152575f6bb58d481ad6573f +size 5359 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SenseGloveSensorData.hpp b/Source/ThirdParty/include/SenseGlove/Core/SenseGloveSensorData.hpp index 05c1f741..05ca442a 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SenseGloveSensorData.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SenseGloveSensorData.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c730f6b8547aa9cc2f4f6b9a9d7a7c342c7833927ddcb014e5287ef205efc108 -size 4148 +oid sha256:4b2a3a21164131c42d1287f5aba54e9cc7baba7b68754376deabc29c54af5085 +size 4287 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SenseGloveThumperCommand.hpp b/Source/ThirdParty/include/SenseGlove/Core/SenseGloveThumperCommand.hpp index 57cc6122..787f5d17 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SenseGloveThumperCommand.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SenseGloveThumperCommand.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:222c5177033bc8ab3aafa67e89159dd345a1b24be5041f4023930f50e5d8a141 -size 1948 +oid sha256:c32a5c33eae1d720a3a51b4a439e8b0a2ac81b7a7a2909763d14040d2031749a +size 2013 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SenseGloveVars.hpp b/Source/ThirdParty/include/SenseGlove/Core/SenseGloveVars.hpp index f205fdf7..8e4bb3df 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SenseGloveVars.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SenseGloveVars.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e26a39a4665a916f156002dd4e7a19d4640f7d2b43071ccf1cfab3078e0237a -size 5341 +oid sha256:1ae1e163085ddf7be28044ad0f95f4262d86c06ed81569f79a194318ffdf9ff9 +size 5481 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SensorRange.hpp b/Source/ThirdParty/include/SenseGlove/Core/SensorRange.hpp index 7e0e7746..b8c42912 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SensorRange.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SensorRange.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f980b15654b700dcaf4f54c2a91cf615c9d113167345c5ffa67554819ace799 -size 4412 +oid sha256:a0e9ae4709196ce3de85762935b115e638a7e3a23fda08883df4af77e261eb79 +size 4547 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Serializer.hpp b/Source/ThirdParty/include/SenseGlove/Core/Serializer.hpp index a2623520..ad233623 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Serializer.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Serializer.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:291a7543b4ad1c0fc249be5e4df11c410f56db80e1acdea11e4872314972c177 -size 4688 +oid sha256:dfcc3908e58b56dd74f789f1a6928d58a2130381b0e308894451364ebec276d1 +size 4805 diff --git a/Source/ThirdParty/include/SenseGlove/Core/SharedMem.hpp b/Source/ThirdParty/include/SenseGlove/Core/SharedMem.hpp index 037242f1..4588d50d 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/SharedMem.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/SharedMem.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf406187e2d1593b296daf364b582a5186488a514e67988858054379cbc2fbba -size 2818 +oid sha256:6fc9b3662bbe6226a834201a9a517a6177e2e07c8ade8caa6895407676baf2fd +size 2898 diff --git a/Source/ThirdParty/include/SenseGlove/Core/StringUtils.hpp b/Source/ThirdParty/include/SenseGlove/Core/StringUtils.hpp index 7894b822..f108bd68 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/StringUtils.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/StringUtils.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1dd783ab8a2ce4a9ccba55f97cec04bb6064419b24cee038019c06f64eb4c715 -size 3202 +oid sha256:2edfea82f7c970c67fc2ac5505c8bef1ec37f977372b270a79fc9d6c64a78ed3 +size 3302 diff --git a/Source/ThirdParty/include/SenseGlove/Core/ThumperCommand.hpp b/Source/ThirdParty/include/SenseGlove/Core/ThumperCommand.hpp index 5fb9db15..c7756431 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/ThumperCommand.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/ThumperCommand.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:26734c2b45fa68927051454bc9101b816d81b71586145fabbffcedafe7593a73 -size 2438 +oid sha256:8fd9f28446ca7464fd9b39df628cc412e7ec48c706be9cc2a13c230b2220e965 +size 2543 diff --git a/Source/ThirdParty/include/SenseGlove/Core/TimedBuzzCommand.hpp b/Source/ThirdParty/include/SenseGlove/Core/TimedBuzzCommand.hpp index 0edd59a7..dc1f0fdb 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/TimedBuzzCommand.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/TimedBuzzCommand.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2efe6ebf8df3e48a47f7fda6cc82f9e5dee7f2fc385e9de0b447e5c13149d416 -size 4777 +oid sha256:791e438a1e525265c24082a05c19dc764b6977e8f64ff2d4dc1919dc77ef2a6b +size 4926 diff --git a/Source/ThirdParty/include/SenseGlove/Core/TimedThumpCommand.hpp b/Source/ThirdParty/include/SenseGlove/Core/TimedThumpCommand.hpp index e346a9e9..536c6040 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/TimedThumpCommand.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/TimedThumpCommand.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9081fac0af3911042ee3e5ed139fbc12536730c54960b6fbedb22b8fc0c73771 -size 3296 +oid sha256:2bbf495ffd7b62614c3860d164ac418d4e5df50c381f21551d68a1e931a25a2f +size 3419 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Tracking.hpp b/Source/ThirdParty/include/SenseGlove/Core/Tracking.hpp index d612c5c9..0f323e29 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Tracking.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Tracking.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4e256cd4202c68b3d4119c741c0d9b56bcb05b2b892d73f80f799020c36f6a8 -size 7112 +oid sha256:b04f7bf60739218008f4f42be8a59103aa6141bcd870561d114406d4657c3938 +size 7287 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Values.hpp b/Source/ThirdParty/include/SenseGlove/Core/Values.hpp index 08b9668a..96a95b0a 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Values.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Values.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4960f2d479b3ac6888d6d42b78995ba1d3ebe441ac8f7b91e23d21ae0f1d437 -size 3917 +oid sha256:a4b3a2688f7eba551864492586a5216d9870a5cdb0cef3129a56e7d0878fecee +size 4023 diff --git a/Source/ThirdParty/include/SenseGlove/Core/Vect3D.hpp b/Source/ThirdParty/include/SenseGlove/Core/Vect3D.hpp index 8b18e7fd..ce63201d 100644 --- a/Source/ThirdParty/include/SenseGlove/Core/Vect3D.hpp +++ b/Source/ThirdParty/include/SenseGlove/Core/Vect3D.hpp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41fb2ff07bb80cd948758c8013c2bfc52a418a0e7245115c54729828f9f27502 -size 3107 +oid sha256:7941162e8f8c91bdaf6bd5545050b0596355e24529bf1b1b1f206eaeaf95c531 +size 3227 diff --git a/Source/ThirdParty/lib/linux/v13/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v13/debug/libsgconnect.a index 535345ab..3c45d109 100644 --- a/Source/ThirdParty/lib/linux/v13/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v13/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16a97f4be6908a1d731ee7c41e6fd47d4dba4ce279cea128326b00348c49bf30 +oid sha256:5c2556b3071c0fd11964c0c8f79692ad0476bce84ee8e145858e709208552910 size 7656570 diff --git a/Source/ThirdParty/lib/linux/v13/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v13/debug/libsgcore.a index 7a754116..d52661c1 100644 --- a/Source/ThirdParty/lib/linux/v13/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v13/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e2be1cd3e7eb9c1e86783e31b316d17acc4d3e48348f0e8594aac1cf05ce2f5 -size 12657956 +oid sha256:2bf81e325773258d1602cc6c872b04a4887ebc9a72b5b9bba8303ccb0628d636 +size 12657942 diff --git a/Source/ThirdParty/lib/linux/v13/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v13/release/libsgconnect.a index 8183ccf1..bc6571ef 100644 --- a/Source/ThirdParty/lib/linux/v13/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v13/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61a1a9b9cd7d4c29380560eff222c5e05d8a00b72c7a4457f81e60c4f3e35996 +oid sha256:d14a6d6316f5ca6bff6666dcbd19d41b4579a3a9eaf49220d4766cea5c9748ab size 905974 diff --git a/Source/ThirdParty/lib/linux/v13/release/libsgcore.a b/Source/ThirdParty/lib/linux/v13/release/libsgcore.a index 27dc269b..46a63c6d 100644 --- a/Source/ThirdParty/lib/linux/v13/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v13/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64ed8d5c41ae07e4a76bec6340f0bd05811036f3e2e16f7d880d0b626250d233 -size 1497502 +oid sha256:c270196690a28e947f42f16ab0c5f8dcf68562d1eeac579d5edf9fb30bd06c7f +size 1497490 diff --git a/Source/ThirdParty/lib/linux/v15/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v15/debug/libsgconnect.a index f4356799..d1e220f4 100644 --- a/Source/ThirdParty/lib/linux/v15/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v15/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:622cc787c927896138e020558ea333d9b488c9330f38d1adb42678a493b00378 +oid sha256:9982ff83a201999946f146962e33b67bb5765984fe72afa74f36483e9f76badb size 7500444 diff --git a/Source/ThirdParty/lib/linux/v15/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v15/debug/libsgcore.a index d9677a68..44c7e037 100644 --- a/Source/ThirdParty/lib/linux/v15/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v15/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92add061c23af281916c33bf1aaed34368b3992498262721008d882d16a21dfb -size 12564406 +oid sha256:842bba750b8e9d480f6425234a4b064642b89381d692df41c161700e3d5f3866 +size 12564402 diff --git a/Source/ThirdParty/lib/linux/v15/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v15/release/libsgconnect.a index eee546fd..431feb03 100644 --- a/Source/ThirdParty/lib/linux/v15/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v15/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c3ab7d4e167f385c13bebc0c81d8fea77d9a50c9484ac05d2764d7ced7c3b73 +oid sha256:33051d699bb87e78f7e1682c893231f89e4d4e05a26d86a36b6c30e3163bf7ab size 915002 diff --git a/Source/ThirdParty/lib/linux/v15/release/libsgcore.a b/Source/ThirdParty/lib/linux/v15/release/libsgcore.a index d5be2e98..a85850d3 100644 --- a/Source/ThirdParty/lib/linux/v15/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v15/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ef81b3336eedc5aa16876f360ddccbca7a7618ffd34c6b3697d49daf865fede -size 1538356 +oid sha256:353cfb466e6aaba652bf139ca01558f0a3f2eb095bb158461feab40d910f0290 +size 1538350 diff --git a/Source/ThirdParty/lib/linux/v16/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v16/debug/libsgconnect.a index 16b96181..d44eca21 100644 --- a/Source/ThirdParty/lib/linux/v16/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v16/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08e510ef12799e3bf6c81b88a89951e27e97d52159a489b6c037630b8813ae46 +oid sha256:d7e4412b66ff57cf8e2999b043c7b3ec752e2877d3b5c36f1cf5039612824ec4 size 7356820 diff --git a/Source/ThirdParty/lib/linux/v16/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v16/debug/libsgcore.a index a6e4cf5c..b58b4444 100644 --- a/Source/ThirdParty/lib/linux/v16/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v16/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f8b4325bcfebdb30566c832468ff9cf7e282dde32da0d2f7316ea40463c5674 -size 12346150 +oid sha256:ab2082535f6321fcbbb97b4baf806db38fc5cdf7f0d149d5db3093c83caf1333 +size 12346138 diff --git a/Source/ThirdParty/lib/linux/v16/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v16/release/libsgconnect.a index 275fbf58..0aec488a 100644 --- a/Source/ThirdParty/lib/linux/v16/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v16/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:569d58917cf86aa0d222f4bf0fe0db5a722046f0db34c0f9ee145eab7db7b93f +oid sha256:08d27d74b94ef1c5445ebe32305a315e921ed7ac7c1d46ac852179d431fd09d4 size 915710 diff --git a/Source/ThirdParty/lib/linux/v16/release/libsgcore.a b/Source/ThirdParty/lib/linux/v16/release/libsgcore.a index eae164a8..4933e117 100644 --- a/Source/ThirdParty/lib/linux/v16/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v16/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:779c34de9e51630f3348b185fe91f94563d467f9b6e58be9a83a29fc90cd3d05 -size 1534708 +oid sha256:3c96b498414531d15ea8894cef70e4f630f2520965d195b76a7d6c9bbc00481a +size 1534702 diff --git a/Source/ThirdParty/lib/linux/v17/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v17/debug/libsgconnect.a index 71fd5930..58d8ce5f 100644 --- a/Source/ThirdParty/lib/linux/v17/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v17/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5da3324fbf33122f2efcf4608846a2366a350904bc46227a0d84ddddd9b227e6 +oid sha256:9f2ab62965c414f2e9533234b29962a7651407a0a3bdf3c9ba3c19e417a4a53e size 7353532 diff --git a/Source/ThirdParty/lib/linux/v17/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v17/debug/libsgcore.a index 57a381d4..0a0165da 100644 --- a/Source/ThirdParty/lib/linux/v17/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v17/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6194c108b36b0cc386453a5956a473dc57d1efe846a7222b1ea88cbba15b54b3 -size 12340062 +oid sha256:8452544cc45cd3aee7e907c26bea0234596964100c835dfa5f508903893ed4ed +size 12340058 diff --git a/Source/ThirdParty/lib/linux/v17/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v17/release/libsgconnect.a index 46ee4e73..f22bd023 100644 --- a/Source/ThirdParty/lib/linux/v17/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v17/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06cd5a6b02f93b3d1ab44a61bc88c6f10639a237bbba7dc3392477db97b62c8e +oid sha256:4f340505c12d1c217f8f9b6e5e657be2b60272d7d275cf324f563516517eae22 size 912620 diff --git a/Source/ThirdParty/lib/linux/v17/release/libsgcore.a b/Source/ThirdParty/lib/linux/v17/release/libsgcore.a index 6fafdfb1..309ebbfa 100644 --- a/Source/ThirdParty/lib/linux/v17/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v17/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e2e597fc8d266bff427d0e833adb95a6f067b080825ec53441e545b386f52968 -size 1525540 +oid sha256:ac06c625c737ea68e7481b6f01c442d291cc853a6e94cca0b8761df21707ee0f +size 1525534 diff --git a/Source/ThirdParty/lib/linux/v19/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v19/debug/libsgconnect.a index a98969af..06a25c68 100644 --- a/Source/ThirdParty/lib/linux/v19/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v19/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6eca8502439320a26b17242f9259b47bb643cc015f71d5aebee9c1d1b9392f09 +oid sha256:bba1f449820a196620139914abd78378ffe7d8329963a15d449668308fe2efb1 size 7353852 diff --git a/Source/ThirdParty/lib/linux/v19/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v19/debug/libsgcore.a index b2115463..4eb72cb6 100644 --- a/Source/ThirdParty/lib/linux/v19/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v19/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9832ef01c6333d774485fd1d21560453da81244ccc1ddb6c07fa9bad21e51a76 -size 12340502 +oid sha256:4b58a281cfc4be15850a97460c1587801e326c648dddd7cd2a4e200aa6922193 +size 12340498 diff --git a/Source/ThirdParty/lib/linux/v19/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v19/release/libsgconnect.a index 94b6ad0a..a937317c 100644 --- a/Source/ThirdParty/lib/linux/v19/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v19/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db8f5ff75bc7ee2ffeb37d735f250b6e14f8982b110844b96338adcd6c4042ed +oid sha256:0f5db2db943b6c8b7699ad3c889b593f7278628afbc7fa222b2225c7b27b33a0 size 909584 diff --git a/Source/ThirdParty/lib/linux/v19/release/libsgcore.a b/Source/ThirdParty/lib/linux/v19/release/libsgcore.a index 7a3a835d..3bb8f8f2 100644 --- a/Source/ThirdParty/lib/linux/v19/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v19/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e77ab400291da834f5ea1ae2972ceaccff6a906f5769ff9fd5d143e091be5fad -size 1525016 +oid sha256:f1fb1a4d7ed92e3d5247e9634537e0feb275e9a2528e938f46d098337cf25f23 +size 1525012 diff --git a/Source/ThirdParty/lib/linux/v20/debug/libsgconnect.a b/Source/ThirdParty/lib/linux/v20/debug/libsgconnect.a index 354d67e9..11f4052e 100644 --- a/Source/ThirdParty/lib/linux/v20/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v20/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28624f1ac65c79581ee42c43dad103cb05511f0aed6d828c0b6c531d4504ee72 +oid sha256:ee9ca22a26e49485636520057a3e3cfab7051d832d648c938e8179fa2d3f3fa9 size 7342708 diff --git a/Source/ThirdParty/lib/linux/v20/debug/libsgcore.a b/Source/ThirdParty/lib/linux/v20/debug/libsgcore.a index 0b68c0d7..c0a7c87e 100644 --- a/Source/ThirdParty/lib/linux/v20/debug/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v20/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db5622a332b0ce6c640d47d5efc0f108841b414141eeec493df2a70af1fa1bbb -size 12008078 +oid sha256:784ddae84f126c9d0ad7273a705d6d81cd8d7953893bc3f4a9eaf66f7a250860 +size 12008066 diff --git a/Source/ThirdParty/lib/linux/v20/release/libsgconnect.a b/Source/ThirdParty/lib/linux/v20/release/libsgconnect.a index 932333ce..9d5197f4 100644 --- a/Source/ThirdParty/lib/linux/v20/release/libsgconnect.a +++ b/Source/ThirdParty/lib/linux/v20/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eea6983334d8ea94e5873b6e172bfb10b79cedde2508dd78ced11c8ff4b7e84f +oid sha256:1c326de705976613da00e0bfda0cac15f64d9bca9ef47db98fd36c3037f98e84 size 1002544 diff --git a/Source/ThirdParty/lib/linux/v20/release/libsgcore.a b/Source/ThirdParty/lib/linux/v20/release/libsgcore.a index 34faa437..f262171b 100644 --- a/Source/ThirdParty/lib/linux/v20/release/libsgcore.a +++ b/Source/ThirdParty/lib/linux/v20/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9b62d614544b348793f5a6a03bac641c9b5e9cf051b6ca222a2ad4663f6dbae0 -size 1673550 +oid sha256:b7a7491fbe3b99764d67c27fd1821ab37eeacabd19336b65d9259209910fd469 +size 1673544 diff --git a/Source/ThirdParty/lib/oculus/debug/libsgconnect.a b/Source/ThirdParty/lib/oculus/debug/libsgconnect.a index 6a5b1442..10a640a0 100644 --- a/Source/ThirdParty/lib/oculus/debug/libsgconnect.a +++ b/Source/ThirdParty/lib/oculus/debug/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7cb75abcd6b7015f1877cb7bfbdc9b1815b0ded253d6fc52398914a3865c9a2b +oid sha256:4961069f42799cee5aee88d06c637e0002569239cd24f1c5c7f54cbd3eb9e603 size 7827186 diff --git a/Source/ThirdParty/lib/oculus/debug/libsgcore.a b/Source/ThirdParty/lib/oculus/debug/libsgcore.a index 5a2aafdf..8cad33ea 100644 --- a/Source/ThirdParty/lib/oculus/debug/libsgcore.a +++ b/Source/ThirdParty/lib/oculus/debug/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3172d02a4173423d236742aa45c0dc502fb16ab7d40269d071b9a220e4b31e04 -size 13297298 +oid sha256:0dbd4b854ff4b22d9d81a82677448a6fc5b1920c532f64ce19d85ad4d352ba9e +size 13297284 diff --git a/Source/ThirdParty/lib/oculus/release/libsgconnect.a b/Source/ThirdParty/lib/oculus/release/libsgconnect.a index 99536932..8e8a05a3 100644 --- a/Source/ThirdParty/lib/oculus/release/libsgconnect.a +++ b/Source/ThirdParty/lib/oculus/release/libsgconnect.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1fe2065c7a705b23ff1ed24c0aaef4ff72dab333c3da690d6fc99f012714e296 +oid sha256:a0015f95cdf5d44b8f7d9689ae031091f0642054bdd864e4cbb5854b5d147a3b size 988058 diff --git a/Source/ThirdParty/lib/oculus/release/libsgcore.a b/Source/ThirdParty/lib/oculus/release/libsgcore.a index a0723166..2f086936 100644 --- a/Source/ThirdParty/lib/oculus/release/libsgcore.a +++ b/Source/ThirdParty/lib/oculus/release/libsgcore.a @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:159fcfc34976c0e54d04677a7bdfa0928dba530fe03a2522c04d048c89b81f61 -size 1393198 +oid sha256:e34c64a40aa3d5aa7ee7786b6092e71bf0a4b237806d13301a5adae87d3bb146 +size 1393194