Hi guys,
suppose I have a spread of DX9 transformations
T[1](1), T[2](2), ..., T[n](n)
I wanna get
T = T[n](T[n-1](T[n-2](...T[2](T[1](n](T[n-1](T[n-2](...T[2](T[1))...)))
In other words, I want to apply all my transformations to each other in a recursive manner. How is this possible provided that n is parametric?
Thanks!