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_uint2_sized
|
||||
/// @file glm/ext/vector_uint2_sized.hpp
|
||||
///
|
||||
/// @defgroup ext_vector_uint2_sized GLM_EXT_vector_uint2_sized
|
||||
/// @ingroup ext
|
||||
///
|
||||
/// Exposes sized unsigned integer vector of 2 components type.
|
||||
///
|
||||
/// Include <glm/ext/vector_uint2_sized.hpp> to use the features of this extension.
|
||||
///
|
||||
/// @see ext_scalar_uint_sized
|
||||
/// @see ext_vector_int2_sized
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../ext/vector_uint2.hpp"
|
||||
#include "../ext/scalar_uint_sized.hpp"
|
||||
|
||||
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
|
||||
# pragma message("GLM: GLM_EXT_vector_uint2_sized extension included")
|
||||
#endif
|
||||
|
||||
namespace glm
|
||||
{
|
||||
/// @addtogroup ext_vector_uint2_sized
|
||||
/// @{
|
||||
|
||||
/// 8 bit unsigned integer vector of 2 components type.
|
||||
///
|
||||
/// @see ext_vector_uint2_sized
|
||||
typedef vec<2, uint8, defaultp> u8vec2;
|
||||
|
||||
/// 16 bit unsigned integer vector of 2 components type.
|
||||
///
|
||||
/// @see ext_vector_uint2_sized
|
||||
typedef vec<2, uint16, defaultp> u16vec2;
|
||||
|
||||
/// 32 bit unsigned integer vector of 2 components type.
|
||||
///
|
||||
/// @see ext_vector_uint2_sized
|
||||
typedef vec<2, uint32, defaultp> u32vec2;
|
||||
|
||||
/// 64 bit unsigned integer vector of 2 components type.
|
||||
///
|
||||
/// @see ext_vector_uint2_sized
|
||||
typedef vec<2, uint64, defaultp> u64vec2;
|
||||
|
||||
/// @}
|
||||
}//namespace glm
|
||||
Reference in New Issue
Block a user