Добавление структур для описания положения через дуальный кватернион

This commit is contained in:
Andrey Pokidov 2026-02-25 09:40:50 +07:00
parent bba8a65c1a
commit 0c27a6e59b
5 changed files with 76 additions and 0 deletions

View file

@ -211,4 +211,14 @@ typedef struct {
BGC_FP64_Quaternion real_part, dual_part;
} BGC_FP64_DualQuaternion;
// ================== Posture3 ================== //
typedef struct {
BGC_FP32_DualQuaternion _dual_versor;
} BGC_FP32_Posture3;
typedef struct {
BGC_FP64_DualQuaternion _dual_versor;
} BGC_FP64_Posture3;
#endif