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
00027 #ifndef SHUTIL_FUNC_HPP
00028 #define SHUTIL_FUNC_HPP
00029
00030 #include "ShVariable.hpp"
00031 #include "ShAttrib.hpp"
00032
00033 #ifndef WIN32
00034 namespace ShUtil {
00035
00036 using namespace SH;
00037
00038
00039
00050 template<int N, typename T>
00051 ShGeneric<N, T> smoothstep(const ShGeneric<N, T>& a, const ShGeneric<N, T>& b,
00052 const ShGeneric<N, T> x);
00053
00056 template<int N, typename T>
00057 ShGeneric<1, T> distance(const ShGeneric<N, T>& a, const ShGeneric<N, T>& b);
00058
00062 template<int N, typename T>
00063 ShGeneric<1, T> lOneDistance(const ShGeneric<N, T>& a, const ShGeneric<N, T>& b);
00064
00068 template<int N, typename T>
00069 ShGeneric<1, T> lInfDistance(const ShGeneric<N, T>& a, const ShGeneric<N, T>& b);
00070
00077
00078
00079 template<int N, typename T>
00080 ShGeneric<N, T> hashlcg(const ShGeneric<N, T>& p);
00081
00094 template<int N, typename T>
00095 ShGeneric<N, T> hashmrg(const ShGeneric<N, T>& p);
00096
00097
00102 template<int N, ShBindingType Binding, typename T>
00103 ShAttrib<N, Binding, T> evenOddSort(const ShAttrib<N, Binding, T>& v);
00104
00109 template<int S, int N, ShBindingType Binding, typename T>
00110 void groupEvenOddSort(ShAttrib<N, Binding, T> v[]);
00111
00116
00117
00118
00122 template<typename T>
00123 ShGeneric<3, T> changeBasis(const ShGeneric<3, T> &b0,
00124 const ShGeneric<3, T> &b1, const ShGeneric<3, T> &b2, const ShGeneric<3, T> &v);
00125
00126 }
00127 #endif
00128
00129 #include "ShFuncImpl.hpp"
00130
00131 #endif // SHUTIL_FUNC_HPP