27 lines
960 B
C++
27 lines
960 B
C++
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// OpenGL Mathematics Copyright (c) 2005 - 2009 G-Truc Creation (www.g-truc.net)
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Created : 2009-05-01
|
|
// Updated : 2009-05-01
|
|
// Licence : This source is under MIT License
|
|
// File : glm/gtc.hpp
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Note:
|
|
// GTC extensions are stable extensions
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef glm_gtc
|
|
#define glm_gtc
|
|
|
|
#define GLM_GTC_GLOBAL 1
|
|
|
|
#include "gtc/double_float.hpp"
|
|
#include "gtc/half_float.hpp"
|
|
#include "gtc/matrix_access.hpp"
|
|
#include "gtc/matrix_operation.hpp"
|
|
#include "gtc/matrix_projection.hpp"
|
|
#include "gtc/matrix_transform.hpp"
|
|
#include "gtc/quaternion.hpp"
|
|
|
|
#endif//glm_gtc
|