I need a way to get an orientation (local x/y/z axes) at any point along a spline... where the z-axis is always the spline tangent and x/y are perpendicular to each other and z.
One common technique is to calculate one axis vector as the rate of change of the tangent, i.e. x(t) = z(t) X z(t+dt)
Then y is simply x X z.
However I am not sure this gives what I'd call the 'natural' orientation path. What I mean by that is, imagine I have a rigid steel rod which is bend into some set of curls and I then advance a flexible hose along this rod. If friction is neglible, the 'natural' path would mean the hose ends up with minimum torque at any point, as it would 'untwist' itself to get a lower-energy state.
Is there any way to do this which doesn't mean traversing the spline's length from 0-t to find the transform at a given point t?