mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-02 11:00:41 +00:00
param vec
This commit is contained in:
@@ -42,12 +42,12 @@ using TouchValues = std::array<Common::Input::TouchStatus, MaxTouchDevices>;
|
||||
|
||||
// Contains all motion related data that is used on the services
|
||||
struct ConsoleMotion {
|
||||
Common::Vec3f accel{};
|
||||
Common::Vec3f gyro{};
|
||||
Common::Vec3f rotation{};
|
||||
std::array<Common::Vec3f, 3> orientation{};
|
||||
Common::Quaternion<f32> quaternion{};
|
||||
Common::Vec3f gyro_bias{};
|
||||
Common::Vec<f32, 3> accel{};
|
||||
Common::Vec<f32, 3> gyro{};
|
||||
Common::Vec<f32, 3> rotation{};
|
||||
std::array<Common::Vec<f32, 3>, 3> orientation{};
|
||||
Common::Vec<f32, 4> quaternion{};
|
||||
Common::Vec<f32, 3> gyro_bias{};
|
||||
f32 verticalization_error{};
|
||||
bool is_at_rest{};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user