Ahh - so you have an SVG that you plan to animate? You wouldn't be able to render it straight on the board - so it'd need doing beforehand.
You could convert all the different combinations of it to bitmaps and composite them together on the Espruino, or you could possibly export the different parts as polylines/polygons and then render those on the Espruino with the graphics lib?
But as you suggest, in the end it might just be easier to use the Graphics lib directly
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Ahh - so you have an SVG that you plan to animate? You wouldn't be able to render it straight on the board - so it'd need doing beforehand.
You could convert all the different combinations of it to bitmaps and composite them together on the Espruino, or you could possibly export the different parts as polylines/polygons and then render those on the Espruino with the graphics lib?
But as you suggest, in the end it might just be easier to use the Graphics lib directly