Limb Range Analyzer
Cross-platform application for human limb range analysis.
extensions.hpp
Go to the documentation of this file.
1
10#ifndef EXTENSIONS_HPP
11#define EXTENSIONS_HPP
12
13/*Private includes: ---------------------------------------------------------*/
14#include <QObject>
15
16/*Struct declaration: -------------------------------------------------------*/
28{
35
42 static qreal sFilterBeta;
43
50 static qreal sIMURangeMax;
51
57 static qreal sAccToDegs;
58
64 static qreal sAccRange;
65
72 static qreal sGyroDPS;
73
79 static qreal sRadsToDegs;
80
86 static qreal sDegsToRads;
87
88
94 static qint32 sNoExerciseSelected;
95
102 static quint16 sAxisSwitchThreshold;
103
110 static quint16 sMovementOrbsCount;
111
112
118 static quint16 sClientTableColumns;
119
126 static quint16 sHistoryTableColumns;
127};
128
129#endif // EXTENSIONS_HPP
Extensions struct principle lies in covering of various Limb Range Analyzer application constants.
Definition: extensions.hpp:28
static quint16 sAxisSwitchThreshold
static quint16 non-negative integral value that holds the limit of measured range in degrees before a...
Definition: extensions.hpp:102
static qreal sRadsToDegs
static qreal member attribute that serves as a RAD/s to DEG/s conversion multiplier.
Definition: extensions.hpp:79
static quint16 sHistoryTableColumns
static quint16 non-negative integer that holds the number of measurement history QTableWidget columns...
Definition: extensions.hpp:126
static qreal sAccRange
static qreal member attribute that keeps the maximum accelerometer range used (2g).
Definition: extensions.hpp:64
static qreal sGyroDPS
static qreal numerical value that defines the BlueCoin gyroscope degrees per second parameter.
Definition: extensions.hpp:72
static qreal sDegsToRads
static qreal numerical constant that represents the DEG/s to RAD/s conversion multiplier.
Definition: extensions.hpp:86
static qint32 sNoExerciseSelected
static qint32 integral value interpreting an easy-to-read description of no selected exercise.
Definition: extensions.hpp:94
static qreal sIMURangeMax
static qreal attribute numerical real value that holds the inertial measurement unit's maximum define...
Definition: extensions.hpp:50
static quint16 sMovementOrbsCount
static quint16 non-negative integral value meant for keeping the amount of auxiliary orbs used while ...
Definition: extensions.hpp:110
static qreal sFilterSampleFrequency
static qreal member attribute that represents sensor fusion filtering sample frequency.
Definition: extensions.hpp:34
static qreal sFilterBeta
static qreal member attribute used while processing sensor fusion and representing proportional gain.
Definition: extensions.hpp:42
static qreal sAccToDegs
static qreal member attribute that holds the BlueCoin accelerometer degrees conversion multiplier.
Definition: extensions.hpp:57
static quint16 sClientTableColumns
static quint16 non-negative integer that holds the number of Client QTableWidget columns.
Definition: extensions.hpp:118