Export to GitHub

wombat-ide - issue #187

turtle constructor with facing


Posted on May 14, 2012 by Quick Bird

When I use the full constructor to build a turtle, the facing direction is off. This should draw a horizontal line:

(let ([t (hatch 0 0 90 'down blue)]) (move! t 100))

This works:

(let ([t (hatch 0 0 90 'down blue)]) (turn-to! t 90) (move! t 100))

Comment #1

Posted on May 15, 2012 by Helpful Elephant

(No comment was entered for this change.)

Comment #2

Posted on May 15, 2012 by Helpful Elephant

(No comment was entered for this change.)

Comment #3

Posted on May 20, 2012 by Helpful Elephant

This issue was closed by revision c9ab99ac964e.

Status: Fixed

Labels:
Type-Defect Priority-Low Difficulty-Easy Component-Logic