/dports/graphics/libprojectm/projectm-3.1.12/src/libprojectM/Renderer/ |
H A D | PerlinNoise.hpp | 48 static inline float cubic_interp(float v0, float v1, float v2, float v3, float x) in cubic_interp() function in PerlinNoise 85 float i0 = cubic_interp(a0 , a1, a2, a3, fractional_X); in InterpolatedNoise() 86 float i1 = cubic_interp(x0 , x1, x2, x3, fractional_X); in InterpolatedNoise() 87 float i2 = cubic_interp(y0 , y1, y2, y3, fractional_X); in InterpolatedNoise() 88 float i3 = cubic_interp(b0 , b1, b2, b3, fractional_X); in InterpolatedNoise() 90 return cubic_interp(i0, i1 , i2 , i3, fractional_Y); in InterpolatedNoise() 119 float A=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() 127 float B=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() 135 float C=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() 143 float D=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() [all …]
|
H A D | PerlinNoiseWithAlpha.hpp | 54 static inline float cubic_interp(float v0, float v1, float v2, float v3, float x) in cubic_interp() function in PerlinNoiseWithAlpha 91 float i0 = cubic_interp(a0 , a1, a2, a3, fractional_X); in InterpolatedNoise() 92 float i1 = cubic_interp(x0 , x1, x2, x3, fractional_X); in InterpolatedNoise() 93 float i2 = cubic_interp(y0 , y1, y2, y3, fractional_X); in InterpolatedNoise() 94 float i3 = cubic_interp(b0 , b1, b2, b3, fractional_X); in InterpolatedNoise() 96 return cubic_interp(i0, i1 , i2 , i3, fractional_Y); in InterpolatedNoise() 125 float A=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() 133 float B=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() 141 float C=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() 149 float D=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() [all …]
|
/dports/audio/clementine-player/Clementine-1.4.0rc1/3rdparty/libprojectm/Renderer/ |
H A D | PerlinNoise.hpp | 94 float i0 = cubic_interp(a0 , a1, a2, a3, fractional_X); in InterpolatedNoise() 95 float i1 = cubic_interp(x0 , x1, x2, x3, fractional_X); in InterpolatedNoise() 96 float i2 = cubic_interp(y0 , y1, y2, y3, fractional_X); in InterpolatedNoise() 97 float i3 = cubic_interp(b0 , b1, b2, b3, fractional_X); in InterpolatedNoise() 99 return cubic_interp(i0, i1 , i2 , i3, fractional_Y); in InterpolatedNoise() 121 float value=cubic_interp(u,a,b,v,zone_y); in perlin_octave_2d() 175 float A=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() 183 float B=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() 191 float C=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() 199 float D=cubic_interp(u,a,b,v,zone_y); in perlin_octave_3d() [all …]
|
/dports/graphics/blender/blender-2.91.0/intern/cycles/kernel/svm/ |
H A D | svm_ies.h | 39 return cubic_interp(a, b, c, d, v_frac); in interpolate_ies_vertical() 98 return max(cubic_interp(a, b, c, d, h_frac), 0.0f); in kernel_ies_interp()
|
/dports/biology/cufflinks/cufflinks-2.2.1-89-gdc3b0cb/src/locfit/ |
H A D | lffuns.h | 38 extern double linear_interp(), cubic_interp(), rectcell_interp();
|
H A D | ev_trian.c | 301 vals0[0] = cubic_interp(lb,vals0[0],vals1[0],deriv0,deriv1); 393 cfe[0] = cubic_interp(lb,cg[3],cg[0],d0,d1); 398 return(cubic_interp(gam,cfo[0],cfe[0],d0,d1));
|
H A D | ev_interp.c | 38 double cubic_interp(h,f0,f1,d0,d1) in cubic_interp() function
|
/dports/audio/dpf-plugins-lv2/DPF-Plugins-1.4/plugins/common/gen_dsp/ |
H A D | genlib_ops.h | 447 inline t_sample cubic_interp(t_sample a, t_sample w, t_sample x, t_sample y, t_sample z) { in cubic_interp() function 926 return cubic_interp(a, w, x, y, z); in read_cubic()
|
/dports/graphics/blender/blender-2.91.0/intern/cycles/util/ |
H A D | util_math.h | 431 ccl_device_inline float cubic_interp(float a, float b, float c, float d, float x) in cubic_interp() function
|