GLM Version 0.9.0
|
00001 00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net) 00004 // Created : 2008-10-24 00005 // Updated : 2008-10-24 00006 // Licence : This source is under MIT License 00007 // File : glm/gtx/log_base.hpp 00009 // Dependency: 00010 // - GLM core 00012 00013 #ifndef glm_gtx_log_base 00014 #define glm_gtx_log_base 00015 00016 // Dependency: 00017 #include "../glm.hpp" 00018 00019 namespace glm 00020 { 00021 namespace test{ 00022 void main_ext_gtx_log_base(); 00023 }//namespace test 00024 00025 namespace gtx{ 00027 namespace log_base 00028 { 00031 template <typename genType> 00032 genType log( 00033 genType const & x, 00034 genType const & base); 00035 00036 }//namespace extend 00037 }//namespace gtx 00038 }//namespace glm 00039 00040 #include "log_base.inl" 00041 00042 namespace glm{using namespace gtx::log_base;} 00043 00044 #endif//glm_gtx_log_base