if (do_name() != 'Home') : ?>
endif ?>
Posted by Giorgio O. on Nov 25, 2007
include("util/comment.php"); ?>
Hello jkyle,
it seems that it might helpful if you'll take a look at this page
http://www.nodebox.net/code/index.php/Graphics_State
I didn't test out your code, but it might be a problem of transformation matrix 'state'.
maybe this snippep of code can be helpful:
size(500,500) transform(mode=CORNER) for i in range(7): translate(250,250) rotate(20*i) rect(0,0,100,1) reset()
SVG import and rotate.
Posted by jkyle on Nov 25, 2007After I read in an SVG file, I would like to draw it multiple times, rotating it each time. It seems, though, that the program applies the rotation to each path, even though the rotate is outside of the for loop.
Any ideas why this might be happening?