SLProject  4.3.020
A platform independent 3D computer graphics framework for desktop OS, Android, iOS and online in web browsers
SENS.h File Reference
#include <chrono>
#include <Utils.h>
Include dependency graph for SENS.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define SENS_DEBUG(...)   Utils::log("SENS DEBUG", __VA_ARGS__);
 
#define SENS_INFO
 
#define SENS_WARN(...)   Utils::log("SENS WARN", __VA_ARGS__);
 

Typedefs

using SENSClock = std::chrono::high_resolution_clock
 
using SENSTimePt = std::chrono::high_resolution_clock::time_point
 
using SENSMicroseconds = std::chrono::microseconds
 

Enumerations

enum class  SENSType { CAM , VIDEO , GPS , ORIENTATION }
 

Detailed Description

Authors
Michael Goettlicher, Marcus Hudritsch
Date
Winter 2021
Remarks
Please use clangformat to format the code. See more code style on https://github.com/cpvrlab/SLProject4/wiki/SLProject-Coding-Style

Definition in file SENS.h.

Macro Definition Documentation

◆ SENS_DEBUG

#define SENS_DEBUG (   ...)    Utils::log("SENS DEBUG", __VA_ARGS__);

Definition at line 60 of file SENS.h.

◆ SENS_INFO

#define SENS_INFO

Definition at line 63 of file SENS.h.

◆ SENS_WARN

#define SENS_WARN (   ...)    Utils::log("SENS WARN", __VA_ARGS__);

Definition at line 64 of file SENS.h.

Typedef Documentation

◆ SENSClock

using SENSClock = std::chrono::high_resolution_clock

Definition at line 56 of file SENS.h.

◆ SENSMicroseconds

using SENSMicroseconds = std::chrono::microseconds

Definition at line 58 of file SENS.h.

◆ SENSTimePt

using SENSTimePt = std::chrono::high_resolution_clock::time_point

Definition at line 57 of file SENS.h.

Enumeration Type Documentation

◆ SENSType

enum SENSType
strong
Enumerator
CAM 
VIDEO 
GPS 
ORIENTATION 

Definition at line 48 of file SENS.h.

49 {
50  CAM,
51  VIDEO,
52  GPS,
54 };