mirror of
https://github.com/icaven/glm.git
synced 2025-12-08 09:47:46 +08:00
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net)
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Created : 2010-02-20
|
|
// Updated : 2010-02-20
|
|
// Licence : This source is under MIT License
|
|
// File : glm/gtc/swizzle.hpp
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Dependency:
|
|
// - GLM core
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef glm_gtc_swizzle
|
|
#define glm_gtc_closest_point
|
|
|
|
// Dependency:
|
|
#include "../glm.hpp"
|
|
|
|
namespace glm
|
|
{
|
|
namespace test{
|
|
void main_gtc_swizzle();
|
|
}//namespace test
|
|
|
|
namespace gtc{
|
|
//! GLM_GTC_swizzle extension
|
|
namespace swizzle{
|
|
|
|
|
|
|
|
}//namespace swizzle
|
|
}//namespace gtc
|
|
}//namespace glm
|
|
|
|
#include "swizzle.inl"
|
|
|
|
namespace glm{using namespace gtc::swizzle;}
|
|
|
|
#endif//glm_gtc_swizzle
|