mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 10:29:01 +02:00
Fixed includes.
This commit is contained in:
parent
7e34bef01e
commit
8cffaf7cc0
1 changed files with 11 additions and 6 deletions
|
@ -5,18 +5,23 @@
|
||||||
// Read interface data from the gyros/accelerometer Invensense board using the SerialUSB
|
// Read interface data from the gyros/accelerometer Invensense board using the SerialUSB
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "SerialInterface.h"
|
|
||||||
#include "SharedUtil.h"
|
|
||||||
#include "Util.h"
|
|
||||||
#include <glm/gtx/vector_angle.hpp>
|
|
||||||
#include <math.h>
|
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <math.h>
|
||||||
|
|
||||||
|
#include <glm/gtx/vector_angle.hpp>
|
||||||
|
|
||||||
|
#include <SharedUtil.h>
|
||||||
|
|
||||||
|
#include "Application.h"
|
||||||
|
#include "SerialInterface.h"
|
||||||
|
#include "Util.h"
|
||||||
|
#include "Webcam.h"
|
||||||
|
|
||||||
const short NO_READ_MAXIMUM_MSECS = 3000;
|
const short NO_READ_MAXIMUM_MSECS = 3000;
|
||||||
const int GRAVITY_SAMPLES = 60; // Use the first few samples to baseline values
|
const int GRAVITY_SAMPLES = 60; // Use the first few samples to baseline values
|
||||||
const int SENSOR_FUSION_SAMPLES = 20;
|
const int SENSOR_FUSION_SAMPLES = 20;
|
||||||
|
|
Loading…
Reference in a new issue