polar_coordinates.hpp

00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2007-03-06
00005 // Updated : 2009-05-01
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtx/polar_coordinates.hpp
00009 // Dependency:
00010 // - GLM core
00012 
00013 #ifndef glm_gtx_polar_coordinates
00014 #define glm_gtx_polar_coordinates
00015 
00016 // Dependency:
00017 #include "../glm.hpp"
00018 
00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00020 #       pragma message("GLM: GLM_GTX_polar_coordinates extension included")
00021 #endif
00022 
00023 namespace glm
00024 {
00025         namespace gtx{
00027         namespace polar_coordinates
00028         {
00031 
00034                 template <typename T> 
00035                 detail::tvec3<T> polar(const detail::tvec3<T>& euclidean);
00036 
00039                 template <typename T> 
00040                 detail::tvec3<T> euclidean(const detail::tvec3<T>& polar);
00041 
00043 
00044         }//namespace polar_coordinates
00045         }//namespace gtx
00046 }//namespace glm
00047 
00048 #include "polar_coordinates.inl"
00049 
00050 namespace glm{using namespace gtx::polar_coordinates;}
00051 
00052 #endif//glm_gtx_polar_coordinates