Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #pragma once
00040
00041
00042 #include "../glm.hpp"
00043
00044 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
00045 # pragma message("GLM: GLM_GTX_extented_min_max extension included")
00046 #endif
00047
00048 namespace glm
00049 {
00052
00055 template <typename T>
00056 GLM_FUNC_DECL T min(
00057 T const & x,
00058 T const & y,
00059 T const & z);
00060
00063 template <typename T, template <typename> class C>
00064 GLM_FUNC_DECL C<T> min(
00065 C<T> const & x,
00066 typename C<T>::T const & y,
00067 typename C<T>::T const & z);
00068
00071 template <typename T, template <typename> class C>
00072 GLM_FUNC_DECL C<T> min(
00073 C<T> const & x,
00074 C<T> const & y,
00075 C<T> const & z);
00076
00079 template <typename T>
00080 GLM_FUNC_DECL T min(
00081 T const & x,
00082 T const & y,
00083 T const & z,
00084 T const & w);
00085
00088 template <typename T, template <typename> class C>
00089 GLM_FUNC_DECL C<T> min(
00090 C<T> const & x,
00091 typename C<T>::T const & y,
00092 typename C<T>::T const & z,
00093 typename C<T>::T const & w);
00094
00097 template <typename T, template <typename> class C>
00098 GLM_FUNC_DECL C<T> min(
00099 C<T> const & x,
00100 C<T> const & y,
00101 C<T> const & z,
00102 C<T> const & w);
00103
00106 template <typename T>
00107 GLM_FUNC_DECL T max(
00108 T const & x,
00109 T const & y,
00110 T const & z);
00111
00114 template <typename T, template <typename> class C>
00115 GLM_FUNC_DECL C<T> max(
00116 C<T> const & x,
00117 typename C<T>::T const & y,
00118 typename C<T>::T const & z);
00119
00122 template <typename T, template <typename> class C>
00123 GLM_FUNC_DECL C<T> max(
00124 C<T> const & x,
00125 C<T> const & y,
00126 C<T> const & z);
00127
00130 template <typename T>
00131 GLM_FUNC_DECL T max(
00132 T const & x,
00133 T const & y,
00134 T const & z,
00135 T const & w);
00136
00139 template <typename T, template <typename> class C>
00140 GLM_FUNC_DECL C<T> max(
00141 C<T> const & x,
00142 typename C<T>::T const & y,
00143 typename C<T>::T const & z,
00144 typename C<T>::T const & w);
00145
00148 template <typename T, template <typename> class C>
00149 GLM_FUNC_DECL C<T> max(
00150 C<T> const & x,
00151 C<T> const & y,
00152 C<T> const & z,
00153 C<T> const & w);
00154
00156 }
00157
00158 #include "extented_min_max.inl"