P1= polygon([(3,3.8), (3,3), (1,3), (1,3.8)]) P2= polygon([(3.5,3.4),(3.5,3), (0.5,3), (0.5,3.4)]) P3= circle((1,3), 0.2, rgbcolor='yellow', fill=True,) P4= circle((3,3), 0.2, rgbcolor='yellow', fill=True,) P5= circle((1,3), 0.1, rgbcolor='orange', fill=True,) P6= circle((3,3), 0.1, rgbcolor='orange', fill=True,) P= P1+P2+P3+P4+P5+P6 P.show() We write this code in sage and we can draw a car through this code but we don't animate the car.How can we animate the car? Could you help me, please?
-- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
