add decoder for accel velocity submodules

This commit is contained in:
2025-03-15 08:41:19 -05:00
parent 38fdf91092
commit 7564bcf6a9
5 changed files with 168 additions and 0 deletions
+28
View File
@@ -18,6 +18,19 @@ export type CentroidPosition = {
z: number;
};
export type CentroidAccelVelocity = {
type: number;
size: number;
x: number;
y: number;
z: number;
accelX: number;
accelY: number;
accelZ: number;
velocityX: number;
velocityY: number;
velocityZ: number;
};
export type TrackedPointPosition = {
type: number;
@@ -29,6 +42,21 @@ export type TrackedPointPosition = {
index: number;
};
export type TrackedPointAccelVelocity = {
type: number;
size: number;
x: number;
y: number;
z: number;
accelX: number;
accelY: number;
accelZ: number;
velocityX: number;
velocityY: number;
velocityZ: number;
index: number;
};
export type OrientationQuaternion = {
type: number;
size: number;