Tagged Questions

4
votes
16answers
800 views

Did you feel learning to program with turtle graphics was useful?

I'm preparing to teach someone to program. When I learned the course material used turtle graphics for the first few exercises. In reading introductory textbooks I have not found one that uses the …
1
vote
2answers
132 views

TurtleGraphics Python: Bouncing turtle off the walls?

So, I am trying to make a realistic bouncing function, where the turtle hits a wall and bounces off at the corresponding angle. My code looks like this: def bounce(num_steps, step_size, …
0
votes
1answer
92 views

TurtleGraphics Python - Constraining random-moving turtle in a circle?

How would I be able to make a randomly moving turtle be constrained inside a circle with a radius of 50, the circles center being at (0, 0)? So if the turtle is currently at location (x, y), it's …
0
votes
1answer
161 views

Python imaging using Turtle Graphics Resizing help

I am using turtle graphics through Python. My image is too large for the turtle window. I had to enlarge the image because the text I need at each spot overlaps. I have a few ideas on how to make the …
4
votes
5answers
192 views

Are there any open source/free LOGO implementations that support dynaturtles?

I'm looking for an implementation of the LOGO programming language that supports 'dynaturtles' - animated turtles that can programmatically change shape, speed and direction as well as detect …