
Search found 3 matches
- Thu Jan 30, 2014 7:59 pm
- Forum: Programming
- Topic: svg to js
- Replies: 2
- Views: 3262
Re: svg to js
thanks , checking it 

- Sat Jan 18, 2014 1:21 am
- Forum: Programming
- Topic: get image rotation position
- Replies: 0
- Views: 1681
get image rotation position
I would like to export to js a sort of skeletal animation made with inkscape. Problem is how to extrapolate position and rotation from bounding box value . I am able to find rotation from transform matrix . I have some python code that doesn't work predictabily as for position of the image from boun...
- Fri Jan 17, 2014 8:04 am
- Forum: Programming
- Topic: svg to js
- Replies: 2
- Views: 3262
svg to js
I have several images in an inkscape file to export as js . How do you get from axis aligned bounding box upper left corner to image position /rotation ? Rotation is available as matrix : math.degrees(math.atan2(m2 , m0)) gives angle of rotation . I am trying to adapt code from this website for the ...