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:
2026-09-13 19:44:26 +02:00
commit 62abf4d5d6
821 changed files with 239694 additions and 0 deletions
+88
View File
@@ -0,0 +1,88 @@
/// @ref gtx_scalar_relational
namespace glm
{
template<typename T>
GLM_FUNC_QUALIFIER bool lessThan
(
T const& x,
T const& y
)
{
return x < y;
}
template<typename T>
GLM_FUNC_QUALIFIER bool lessThanEqual
(
T const& x,
T const& y
)
{
return x <= y;
}
template<typename T>
GLM_FUNC_QUALIFIER bool greaterThan
(
T const& x,
T const& y
)
{
return x > y;
}
template<typename T>
GLM_FUNC_QUALIFIER bool greaterThanEqual
(
T const& x,
T const& y
)
{
return x >= y;
}
template<typename T>
GLM_FUNC_QUALIFIER bool equal
(
T const& x,
T const& y
)
{
return detail::compute_equal<T, std::numeric_limits<T>::is_iec559>::call(x, y);
}
template<typename T>
GLM_FUNC_QUALIFIER bool notEqual
(
T const& x,
T const& y
)
{
return !detail::compute_equal<T, std::numeric_limits<T>::is_iec559>::call(x, y);
}
GLM_FUNC_QUALIFIER bool any
(
bool const& x
)
{
return x;
}
GLM_FUNC_QUALIFIER bool all
(
bool const& x
)
{
return x;
}
GLM_FUNC_QUALIFIER bool not_
(
bool const& x
)
{
return !x;
}
}//namespace glm