hybridgroup / kidsruby

KidsRuby is a Ruby programming environment meant for kids to learn and have fun!
http://kidsruby.com
Other
333 stars 104 forks source link

penup and pendown #65

Closed antunderwood closed 10 years ago

antunderwood commented 12 years ago

Using the turtle penup and pendown have no effect

antunderwood commented 12 years ago

actually this is quite easy to solve. I have added to the turtle Class in turtle.rb the following

def penup add_command "penup()" end

def pendown add_command "pendown()" end

Also added the following for text

def text(string) add_command "text('#{string}')" end

def font(string) add_command "font('#{string}')" end

ldenman commented 11 years ago

Thanks for the comment. Feel free to submit a patch if you'd like.

antunderwood commented 11 years ago

See this pull request https://github.com/hybridgroup/kidsruby/pull/93

hunterboerner commented 10 years ago

Closing do to old age. Please retest on latest KidsRuby version and if problem persists, reopen the issue with details.