Rebuild trinity visualizer from bare SDL and OpenGL to using Raylib. Added Code for serial parsing on linux. Current functionality reads incoming quaternion packet data coming in over serial and displays the values and also visualizes with a cube, connect and disconnect is implemented. Essentially rebuild the functionality of the old version with added linux support.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
/// @ref gtc_vec1
|
||||
/// @file glm/gtc/vec1.hpp
|
||||
///
|
||||
/// @see core (dependence)
|
||||
///
|
||||
/// @defgroup gtc_vec1 GLM_GTC_vec1
|
||||
/// @ingroup gtc
|
||||
///
|
||||
/// Include <glm/gtc/vec1.hpp> to use the features of this extension.
|
||||
///
|
||||
/// Add vec1, ivec1, uvec1 and bvec1 types.
|
||||
|
||||
#pragma once
|
||||
|
||||
// Dependency:
|
||||
#include "../ext/vector_bool1.hpp"
|
||||
#include "../ext/vector_bool1_precision.hpp"
|
||||
#include "../ext/vector_float1.hpp"
|
||||
#include "../ext/vector_float1_precision.hpp"
|
||||
#include "../ext/vector_double1.hpp"
|
||||
#include "../ext/vector_double1_precision.hpp"
|
||||
#include "../ext/vector_int1.hpp"
|
||||
#include "../ext/vector_int1_sized.hpp"
|
||||
#include "../ext/vector_uint1.hpp"
|
||||
#include "../ext/vector_uint1_sized.hpp"
|
||||
|
||||
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
|
||||
# pragma message("GLM: GLM_GTC_vec1 extension included")
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user