Interpolate random position
Hey looking to interpolate between random positions if someone could look this over id appreciate it.
i think i have the basic function, i have to create a second linear to but how could i reuse the last number?
function postErize(a){
if (a == 0){a = random(10)} //check for value
else {a = a}
posterizeTime(a) //posterize tmax
z = (time * 29.97) % 2 == 0 //time
x = random(1080);
y = random(1920);
linear(z, 0, a, x[0], x[0])
[value,value]
}
postErize(random(10))

