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,49 @@
|
||||
/// @ref ext_vector_int4_sized
|
||||
/// @file glm/ext/vector_int4_sized.hpp
|
||||
///
|
||||
/// @defgroup ext_vector_int4_sized GLM_EXT_vector_int4_sized
|
||||
/// @ingroup ext
|
||||
///
|
||||
/// Exposes sized signed integer vector of 4 components type.
|
||||
///
|
||||
/// Include <glm/ext/vector_int4_sized.hpp> to use the features of this extension.
|
||||
///
|
||||
/// @see ext_scalar_int_sized
|
||||
/// @see ext_vector_uint4_sized
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../ext/vector_int4.hpp"
|
||||
#include "../ext/scalar_int_sized.hpp"
|
||||
|
||||
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
|
||||
# pragma message("GLM: GLM_EXT_vector_int4_sized extension included")
|
||||
#endif
|
||||
|
||||
namespace glm
|
||||
{
|
||||
/// @addtogroup ext_vector_int4_sized
|
||||
/// @{
|
||||
|
||||
/// 8 bit signed integer vector of 4 components type.
|
||||
///
|
||||
/// @see ext_vector_int4_sized
|
||||
typedef vec<4, int8, defaultp> i8vec4;
|
||||
|
||||
/// 16 bit signed integer vector of 4 components type.
|
||||
///
|
||||
/// @see ext_vector_int4_sized
|
||||
typedef vec<4, int16, defaultp> i16vec4;
|
||||
|
||||
/// 32 bit signed integer vector of 4 components type.
|
||||
///
|
||||
/// @see ext_vector_int4_sized
|
||||
typedef vec<4, int32, defaultp> i32vec4;
|
||||
|
||||
/// 64 bit signed integer vector of 4 components type.
|
||||
///
|
||||
/// @see ext_vector_int4_sized
|
||||
typedef vec<4, int64, defaultp> i64vec4;
|
||||
|
||||
/// @}
|
||||
}//namespace glm
|
||||
Reference in New Issue
Block a user