I am trying to animate infinite rotation around z axis.
A natural approach would be something like
go.animate(".", "rotation", go.PLAYBACK_LOOP_FORWARD, vmath.quat_rotation_z(math.pi),
,go.EASING_LINEAR, 4)
, which rotates for 180 degrees and than jumps back.
How to rotate for full 360 degrees infinitly?