16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-09-03 04:09:18 +02:00
Files
maszyna/ref/glm/glm/ext/vector_float3.hpp
2018-10-17 16:00:26 +02:00

19 lines
425 B
C++

/// @ref core
/// @file glm/ext/vector_float3.hpp
#pragma once
#include "../detail/type_vec3.hpp"
namespace glm
{
/// @addtogroup core_vector
/// @{
/// 3 components vector of single-precision floating-point numbers.
///
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.5 Vectors</a>
typedef vec<3, float, defaultp> vec3;
/// @}
}//namespace glm