gradient_paint.hpp
00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2009-03-06
00005 // Updated : 2009-03-09
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtx/gradient_paint.hpp
00009 // Dependency:
00010 // - GLM core
00012 
00013 #ifndef glm_gtx_gradient_paint
00014 #define glm_gtx_gradient_paint
00015 
00016 // Dependency:
00017 #include "../glm.hpp"
00018 #include "../gtx/optimum_pow.hpp"
00019 
00020 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00021 #       pragma message("GLM: GLM_GTX_gradient_paint extension included")
00022 #endif
00023 
00024 namespace glm{
00025 namespace gtx{
00026 namespace gradient_paint 
00027 {
00028         using namespace gtx::optimum_pow;
00029 
00032 
00033         template <typename valType>
00034         valType radialGradient(
00035                 glm::detail::tvec2<valType> const & Center,
00036                 valType const & Radius,
00037                 glm::detail::tvec2<valType> const & Focal,
00038                 glm::detail::tvec2<valType> const & Position);
00039 
00040         template <typename valType>
00041         valType linearGradient(
00042                 glm::detail::tvec2<valType> const & Point0,
00043                 glm::detail::tvec2<valType> const & Point1,
00044                 glm::detail::tvec2<valType> const & Position);
00045 
00047 }// namespace gradient_paint
00048 }// namespace gtx
00049 }// namespace glm
00050 
00051 #include "gradient_paint.inl"
00052 
00053 namespace glm{using namespace gtx::gradient_paint;}
00054 
00055 #endif//glm_gtx_gradient_paint