75357b330c
Now using GLM instead of the custom math libraries. Sadly, this did not 100% fix the problem at hand but it does give some closure that the math is not the problem. Also it will be nice to have a general math library to not have to deal with creating every math function every time.
40 lines
842 B
C++
40 lines
842 B
C++
/// @ref ext_scalar_float_sized
|
|
/// @file glm/ext/scalar_float_sized.hpp
|
|
///
|
|
/// @defgroup ext_scalar_float_sized GLM_EXT_scalar_float_sized
|
|
/// @ingroup ext
|
|
///
|
|
/// Exposes sized float scalar types.
|
|
///
|
|
/// Include <glm/ext/scalar_float_sized.hpp> to use the features of this extension.
|
|
///
|
|
/// @see ext_scalar_int_sized
|
|
/// @see ext_scalar_uint_sized
|
|
|
|
#pragma once
|
|
|
|
#include "../detail/setup.hpp"
|
|
|
|
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
|
|
# pragma message("GLM: GLM_EXT_scalar_float_sized extension included")
|
|
#endif
|
|
|
|
namespace glm
|
|
{
|
|
/// @addtogroup ext_scalar_float_sized
|
|
/// @{
|
|
|
|
/// Single precision floating-point numbers.
|
|
typedef float float32;
|
|
|
|
|
|
# ifndef GLM_FORCE_SINGLE_ONLY
|
|
|
|
/// Double precision floating-point numbers.
|
|
typedef double float64;
|
|
|
|
# endif//GLM_FORCE_SINGLE_ONLY
|
|
|
|
/// @}
|
|
}//namespace glm
|