Linear expression applied to a path
Does anyone know if you can use the linear function to deform a path?
In below, the triangle goes from left to right, but its path deforms slightly.
If the triangle was moving to the right from a position of (0,0) to (100,0) ...I thought of using something like this in the Path property expression:
A=path.key(1)
B=path.key(2)
linear(position, 0, 100, A, B)
But it doesnt work because path is not an array, it's a path object. I tried using pointonpath but to no avail.

