SimState constructor

SimState({
  1. required float q1,
  2. required float q2,
  3. required float q3,
  4. required float q4,
  5. required float roll,
  6. required float pitch,
  7. required float yaw,
  8. required float xacc,
  9. required float yacc,
  10. required float zacc,
  11. required float xgyro,
  12. required float ygyro,
  13. required float zgyro,
  14. required float lat,
  15. required float lon,
  16. required float alt,
  17. required float stdDevHorz,
  18. required float stdDevVert,
  19. required float vn,
  20. required float ve,
  21. required float vd,
  22. required int32_t latInt,
  23. required int32_t lonInt,
})

Implementation

SimState({
  required this.q1,
  required this.q2,
  required this.q3,
  required this.q4,
  required this.roll,
  required this.pitch,
  required this.yaw,
  required this.xacc,
  required this.yacc,
  required this.zacc,
  required this.xgyro,
  required this.ygyro,
  required this.zgyro,
  required this.lat,
  required this.lon,
  required this.alt,
  required this.stdDevHorz,
  required this.stdDevVert,
  required this.vn,
  required this.ve,
  required this.vd,
  required this.latInt,
  required this.lonInt,
});