edit proshivka

This commit is contained in:
Dana Markova
2025-04-30 12:16:18 +03:00
parent 1f97891439
commit 27a120fc7f
12 changed files with 707 additions and 4 deletions

View File

@ -0,0 +1,15 @@
#pragma once
struct Vec3 {
float x, y, z;
};
struct ORI
{
float Tilt; // Earth's plane tilt
float Pitch, Roll, Yaw; // Sovereign orientation (not Euler)
float IneX, IneY, IneZ; // Inertial accelerations
};
ORI WorkAccGyroMag(const Vec3 acc, const Vec3 gyr, const Vec3 mag, const float mag_shift, const float alpha);
float calculateHeight(float bar, float temp);