I'm doing something where I want to be able to repeat a rotation animation element different amounts of times depending on the situation -- in other words, I want to control the angle of rotation by incrementing it, 30 degrees at a time. I may have to do something clumsy where I actually manipulate the "rotate(angle, cx, cy)" attribute of the transformation itself, but I'm hoping for a more generic solution where I can just say "rotate 30 degrees this amount of times". But rotation doesn't seem to be accumulating the way it should (I'm using various combinations of accumulate="sum", additive="sum", etc.). The element being rotated appears to rotate only once when I "beginElement()" the rotation multiple times; alternatively, when I set the "repeatCount" attribute of the element itself, it goes ballistic and just flies all over the place.
Is this because it's actually adding not only the angle of rotation, but also the cx & cy? Or is it something different? In either case, is there a workaround? Or do I need to post my code because I must have made some random mistake? ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/svg-developers/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

