I'm overwhelmed by approaches and tools for SVG, and would like to find a super simple way to position and draw a stick-figure dog's "tail", consisting of maybe five "bones". each of which could be a line or rectangle for now. I'd like each child bone to have a settable rotation from its parent bone. You could also think of it as a five-segment snake.
For example, if the bones' rotations are 10,10,10,10,10 then the tail curves smoothly down, like a circle. If the rotations are -20,-10,0,10,20 then the tail has an "S"-curve shape to it. I'd love to have a static page that could do this, but ideally I'd like to have some kind of textbox/slider for each of the five bones, or at least an example of how to reference and tweak the bones via JavaScript. is there a really simple approach that can make this tail? I'll use a library if there's one that really adds value for this case, but simple/small is preferred. Thanks!