Attributes
Functions
refract(i, n, r)
Syntax:
refract(float/vec, float/vec, float)
Arguments:
  • i
    Description:
    The incident vector.
  • n
    Description:
    The normal vector.
  • r
    Description:
    The ratio between refraction indices.
Returns:
float/vec, refraction ray
Description:
Used to compute the direction of a refracted ray using the angle of incidence ('i'), the normal ('n') and the ratio between the refraction indices. So for example, water has a refractive index of about 1.33 and air is 1.0 so refracting into water would have a ratio of
1.0 / 1.33
and refracting out would be
1.33 / 1.0
.

Note: Make sure both vectors are normalized or the forumla won't work correctly. If you're curious about the forumla, here it is:
float k = 1.0 - r * r * (1.0 - dot(n, i) * dot(n, i));

(k < 0.0) ? i-i : r * i - (r * dot(n, i) + sqrt(k)) * n;
Example:
  • //Compute the refraction vector into water
    vec3 refraction_direction = refract(normalize(view), normal, 1.0/1.33);
Built-in Variables