lerp()
Description
Calculates a number between two numbers at a specific increment. The amt parameter is the amount to interpolate between the two values where 0.0 equal to the first point, 0.1 is very near the first point, 0.5 is half-way in between, etc. The lerp function is convenient for creating motion along a straight path and for drawing dotted lines.
Related
Example
Code:
float a = 20; float b = 80; float c = lerp(a, b, .2); float d = lerp(a, b, .5); float e = lerp(a, b, .8); beginShape(POINTS); vertex(a, 50); vertex(b, 50); vertex(c, 50); vertex(d, 50); vertex(e, 50); endShape();