I need to create an infinity or an eight sign trajectory in Construct2 without extra plugins.
I have found the formulas but I can't port them because I don't know Math enough
First formula
x = cos(t);
y = sin(2*t) / 2;
and looks like this:
Lemniscate of Gerono animation
Second formula:
scale = 2 / (3 - cos(2*t));
x = scale * cos(t);
y = scale * sin(2*t) / 2;
It looks like this:
Lemniscate of Bernoulli animation