首页 > 解决方案 > 对于 smoothstep 函数 glsl,edge0 大于或等于 edge1 是什么情况

问题描述

我正在研究smoothstep(edge0, edge1, x)功能。 文档说结果未定义 if edge0 >= edge1

着色器中有一行:

smoothstep(radius + SIZE, radius + SIZE / 1.2, dist);

这意味着edge0 >= edge1它仍然可以正常工作,这怎么可能?

标签: mathglslsmoothstep

解决方案


在我看来,文档是错误的。

以下是使用smoothstep :

y = smoothstep(1.0,-1.0,x); 在此处输入图像描述

y = smoothstep(-1.0,1.0,x); 在此处输入图像描述

看起来当 edge0 > edge1 时,它将 1 处的边翻转为负无穷大,将 0 处的边翻转为正无穷大。

另一个例子:

#ifdef GL_ES
precision mediump float;
#endif

#define PI 3.14159265359

uniform vec2 u_resolution;

float plot(vec2 st, float pct){
  return  smoothstep( pct+0.02, pct, st.y) -
          smoothstep( pct, pct-0.02, st.y);
}

void main() {
    vec2 st = gl_FragCoord.xy/u_resolution;

    // Smooth interpolation between 0.1 and 0.9
    float y = smoothstep(0.1,0.9,st.x);

    vec3 color = vec3(y);

    float pct = plot(st,y);
    color = (1.0-pct)*color+pct*vec3(0.0,1.0,0.0);

    gl_FragColor = vec4(color,1.0);
}

在此处输入图像描述

将 y 更改为从 0.9 到 0.1 的步长会将输出更改为:

在此处输入图像描述


推荐阅读