I am looking at some open source software and they use a for loop/operators in a different way then I have seen and I was wondering if someone can tell me what it is doing in English. I believe the open source is in C, maybe C++, not sure if it makes a difference but I am working in C++.
The for loop given is, TSTEP=60, tt and t are just double variables
for (tt=t<0.0?-TSTEP:TSTEP;fabs(t)>1E-9;t-=tt)