<div style="font-family: 'Times New Roman'; font-size: 16px;">Hello, <br _moz_dirty="" /><br _moz_dirty="" />I try to make a car with Racket.<br _moz_dirty="" /><br _moz_dirty="" />So far I have got this : <br _moz_dirty="" /><br _moz_dirty="" />(define (rechthoek a)<br _moz_dirty="" />  (rectangle 200 50 &quot;solid&quot; &quot;black&quot;))<br _moz_dirty="" /><br _moz_dirty="" />(define (cirkel a)<br _moz_dirty="" />  (circle 20 &quot;solid&quot; &quot;red&quot;))<br _moz_dirty="" /><br _moz_dirty="" />(define (auto a)<br _moz_dirty="" /> (overlay/xy (rechthoek a) -50 30 (cirkel a)))<br _moz_dirty="" /><br _moz_dirty="" />(auto 1)<br _moz_dirty="" /><br _moz_dirty="" /><br _moz_dirty="" />As far as I can see I cannot use overlay/xy to make the second wheel.<br _moz_dirty="" /><br _moz_dirty="" />Must I make a images of the 2 wheels first and use overlay/xy or is there another way to achieve this ?<br _moz_dirty="" /><br _moz_dirty="" />Regards,<br _moz_dirty="" /><br _moz_dirty="" />Roelof Wobben<br _moz_dirty="" /><br _moz_dirty="" /><br /></div>