-
try to understand
Hi,
i am new and try to understand the logic. When i run this on position property:a = [100, 500];
b= [1000, 500];
AB = linear(time, 0, 3, a, b);
BA = linear(time, 3, 6, b, a);or
a = [100, 500];
b= [1000, 500];
BA = linear(time, 3, 6, b, a);
AB = linear(time, 0, 3, a, b);its always second “linear” command works. Why?
thanks in advance!