This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
datadialogshowestimated.cpp
96 lines (80 loc) · 2.22 KB
/
datadialogshowestimated.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include "datadialogshowestimated.h"
DataDialogShowEstimated::DataDialogShowEstimated()
= default;
DataDialogShowEstimated::DataDialogShowEstimated(double sX,double sY, double sZ,double tX,double tY, double tZ, double rX1, double rY1, double rZ1,double rX2, double rY2, double rZ2,double rX3, double rY3, double rZ3,double tOffset,double rm,int diType,Eigen::MatrixXd mpcaA,Eigen::MatrixXd mpcaB){
scaleX=sX;
scaleY=sY;
scaleZ=sZ;
traslaX=tX;
traslaY=tY;
traslaZ=tZ;
timeOffset=tOffset;
rmax=rm;
dialogType=diType;
}
DataDialogShowEstimated::DataDialogShowEstimated(double sX,double sY, double sZ,double tX,double tY, double tZ, double rX1, double rY1, double rZ1,double rX2, double rY2, double rZ2,double rX3, double rY3, double rZ3,double tOffset,double rm,int diType,double rmse){
scaleX=sX;
scaleY=sY;
scaleZ=sZ;
traslaX=tX;
traslaY=tY;
traslaZ=tZ;
timeOffset=tOffset;
rmax=rm;
RMSE=rmse;
dialogType=diType;
}
DataDialogShowEstimated::DataDialogShowEstimated(double sX,double sY, double sZ,double tX,double tY, double tZ, double y, double p, double r,double tOffset,double rm,int diType,double rmse){
scaleX=sX;
scaleY=sY;
scaleZ=sZ;
traslaX=tX;
traslaY=tY;
traslaZ=tZ;
yaw=y;
pitch=p;
roll=r;
timeOffset=tOffset;
rmax=rm;
RMSE=rmse;
dialogType=diType;
}
double DataDialogShowEstimated::getScaleX(){
return scaleX;
};
double DataDialogShowEstimated::getScaleY(){
return scaleY;
};
double DataDialogShowEstimated::getScaleZ(){
return scaleZ;
};
double DataDialogShowEstimated::getTraslaX(){
return traslaX;
};
double DataDialogShowEstimated::getTraslaY(){
return traslaY;
};
double DataDialogShowEstimated::getTraslaZ(){
return traslaZ;
};
double DataDialogShowEstimated::getTimeOffset(){
return timeOffset;
};
double DataDialogShowEstimated::getRMax(){
return rmax;
};
double DataDialogShowEstimated::getRMSE(){
return RMSE;
};
double DataDialogShowEstimated::getYaw(){
return yaw;
};
double DataDialogShowEstimated::getPitch(){
return pitch;
};
double DataDialogShowEstimated::getRoll(){
return roll;
};
int DataDialogShowEstimated::getDialogType(){
return dialogType;
};