-
multiple linear() in one expression.
Hi all. Can I use two linear() somehow? for example the first one is linear(time,0,1,10,20) and the second one is linear(time,3,4,20,30) ?
I thought it was something like this:
linear(time,0,1,10,20) + linear(time,3,4,20,30) or linear(time,0,1,10,20) && linear(time,3,4,20,30)
and is it possible to somehow use one linear () in a cycle for()?