home!
should reset orientation, not just location
#85
Labels
No Label
accepted
bug
clj
documentation
enhancement
errors
infrastructure
later
next
now
optimization
proposal
question
research
semantics
syntax
ux
vm
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: twc/ludus#85
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Is this right? I think there's probably a reason to have
home!
,reset!
, andclear!
turtle commands:home!
brings the turtle back to the originreset!
brings the turtle back to the origin AND sets the heading to 0clear!
does areset!
and setsbg!
andpc!
to black and white, respectively.@matt points out that
home!
described is justgoto! (0, 0)
. So let's get rid ofreset!
andhome!
should operate as described in the issue title.Done in
121446c5c4
Note: current protocol does not include
clear!
; there are a few design decisions involved in that that we'll have to explore once we get actors and multiple turtles & worlds up and running.