mirror of
https://github.com/jwetzell/rttrp-js.git
synced 2026-09-10 08:29:36 +00:00
add decoder for accel velocity submodules
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user