00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_gradient_paint
00014 #define glm_gtx_gradient_paint
00015
00016
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 }
00048 }
00049 }
00050
00051 #include "gradient_paint.inl"
00052
00053 namespace glm{using namespace gtx::gradient_paint;}
00054
00055 #endif//glm_gtx_gradient_paint