-
Notifications
You must be signed in to change notification settings - Fork 170
Imu plugin #2043
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Imu plugin #2043
Conversation
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
Signed-off-by: SeptimiuVana <[email protected]>
include/imuanalyzer/imuanalyzersettings.hpp | ||
src/datavisualizer.cpp | ||
include/imuanalyzer/datavisualizer.hpp | ||
# ${PROJECT_RESOURCES} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
comented code
QVector<double> xLinePoint{90, 90}; | ||
QVector<double> yLinePoint{3, 3}; | ||
PlotWidget *plotWidget; | ||
QwtPlotCurve *point; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private var names should all start with "m_" for consistency
Q_OBJECT | ||
public: | ||
BubbleLevelRenderer(QWidget *parent = nullptr); | ||
//~BubbleLevelRenderer(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
commented code
private: | ||
data3P m_rot, m_deltaRot; | ||
float temp = 0.0f; | ||
QPlainTextEdit *m_accelTextBox, *m_linearATextBox, *m_magnTextBox, *m_tempTextBox; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
m_magnTextBox is declared but not used
|
||
private: | ||
data3P m_rot, m_deltaRot; | ||
float temp = 0.0f; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
temp, m_rot and m_deltaRot are declared but not used
#include <Qt3DRender/QRenderStateSet> | ||
#include <Qt3DExtras/QText2DEntity> | ||
#include <Qt3DCore/QEntity> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some includes are not used and should be removed
Q_OBJECT | ||
public: | ||
SceneRenderer(QWidget *parent = nullptr); | ||
// ~SceneRenderer(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
commented code
#include <pluginbase/messagebroker.h> | ||
#include <pluginbase/preferences.h> | ||
#include <qdebug.h> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some includes are not used and should be removed
data3P m_rot = {0.0f, 0.0f, 0.0f}; | ||
data3P m_dist = {0.0f, 0.0f, 0.0f}; | ||
|
||
std::thread t; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private var names should all start with "m_" for consistency
Qt3DExtras::QPhongMaterial *m_cubeMaterial; | ||
Qt3DExtras::QPhongMaterial *m_planeMaterial; | ||
|
||
Qt3DCore::QEntity *cubeEntity; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private var names should all start with "m_" for consistency
No description provided.