mirror of
https://github.com/icaven/glm.git
synced 2025-12-07 17:26:50 +08:00
26 lines
855 B
C++
26 lines
855 B
C++
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// OpenGL Mathematics Copyright (c) 2005 - 2008 G-Truc Creation (www.g-truc.net)
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Created : 2008-10-22
|
|
// Updated : 2008-10-22
|
|
// Licence : This source is under MIT License
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Dependency:
|
|
// - GLM core
|
|
// - GLM_GTX_double_float
|
|
// - GLM_GTX_half_float
|
|
// - GLM_GTX_quaternion
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef glm_gtx_string_cast_api
|
|
#define glm_gtx_string_cast_api
|
|
|
|
#include "gtx/string_cast.hpp"
|
|
|
|
namespace glm
|
|
{
|
|
using GLM_GTX_string_cast;
|
|
}
|
|
|
|
#endif//glm_gtx_string_cast_api
|