Initial commit after setting up Gitea. At this point a 3D Cube is using the mpu6050 data being converted by the stm32f446to quaternions to be moved. It works, bare minimum
This commit is contained in:
49
include/glm/ext/matrix_uint4x3_sized.hpp
Normal file
49
include/glm/ext/matrix_uint4x3_sized.hpp
Normal file
@@ -0,0 +1,49 @@
|
||||
/// @ref ext_matrix_uint4x3_sized
|
||||
/// @file glm/ext/matrix_uint4x3_sized.hpp
|
||||
///
|
||||
/// @see core (dependence)
|
||||
///
|
||||
/// @defgroup ext_matrix_uint4x3_sized GLM_EXT_matrix_uint4x3_sized
|
||||
/// @ingroup ext
|
||||
///
|
||||
/// Include <glm/ext/matrix_uint4x3_sized.hpp> to use the features of this extension.
|
||||
///
|
||||
/// Defines a number of matrices with integer types.
|
||||
|
||||
#pragma once
|
||||
|
||||
// Dependency:
|
||||
#include "../mat4x3.hpp"
|
||||
#include "../ext/scalar_uint_sized.hpp"
|
||||
|
||||
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
|
||||
# pragma message("GLM: GLM_EXT_matrix_uint4x3_sized extension included")
|
||||
#endif
|
||||
|
||||
namespace glm
|
||||
{
|
||||
/// @addtogroup ext_matrix_uint4x3_sized
|
||||
/// @{
|
||||
|
||||
/// 8 bit unsigned integer 4x3 matrix.
|
||||
///
|
||||
/// @see ext_matrix_uint4x3_sized
|
||||
typedef mat<4, 3, uint8, defaultp> u8mat4x3;
|
||||
|
||||
/// 16 bit unsigned integer 4x3 matrix.
|
||||
///
|
||||
/// @see ext_matrix_uint4x3_sized
|
||||
typedef mat<4, 3, uint16, defaultp> u16mat4x3;
|
||||
|
||||
/// 32 bit unsigned integer 4x3 matrix.
|
||||
///
|
||||
/// @see ext_matrix_uint4x3_sized
|
||||
typedef mat<4, 3, uint32, defaultp> u32mat4x3;
|
||||
|
||||
/// 64 bit unsigned integer 4x3 matrix.
|
||||
///
|
||||
/// @see ext_matrix_uint4x3_sized
|
||||
typedef mat<4, 3, uint64, defaultp> u64mat4x3;
|
||||
|
||||
/// @}
|
||||
}//namespace glm
|
||||
Reference in New Issue
Block a user