Tagged Questions
A method for drawing computer graphics using a cursor, known as a turtle
6
votes
17answers
2k 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 ...
4
votes
1answer
330 views
Python turtle module : help
I want to use the turtle module and I want to do :
Draw a red circle, then a yellow circle underneath it and a green circle underneath that.
to draw a regular hexagon.
can anyone tell me ...
4
votes
5answers
417 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 ...
3
votes
3answers
95 views
How exactly do Hex color codes work? / How to implement something like a heat map
I am working on a simple program to just draw circles around some fixed points using the python turtle package; however, I wanted to make it kind of like a heat map where the colors get "cooler" as ...
2
votes
1answer
107 views
Overlapping trees in L-system forest
I created an a program using python's turtle graphics that simulates tree growth in a forest. There's 3 tree patterns that are randomly chosen, and their starting coordinates and angles are randomly ...
2
votes
1answer
153 views
restoring recorded state in l-system code using turtle graphics
I'm using turtle graphics to reproduce l-systems (TurtleWorld library). The rules I have tried to apply work well when they don't involve going back to a previous saved state, but whenever there is a ...
2
votes
1answer
495 views
Python Turtle Module- Saving an image
I would like to figure out how to save a bitmap or vector graphics image after creating a drawing with python's turtle module. After a bit of googling I can't find an easy answer. I did find a ...
1
vote
1answer
237 views
Dragon Curve in Python
I created a program to draw a dragon curve using turtle graphics.. but my result doesn't really look like the picture does in the link:
One problem I noticed is that I want to save the produced ...
1
vote
1answer
348 views
how to rotate text in python's turtle graphics
I want to make diagrams with python's turtle (teaching purposes). The label "values" for the y-axis should be rotated.
Python's turtle has a method to write a string at current position:
from turtle ...
1
vote
1answer
162 views
How to write a python program that read the input and convert it to pre-defined 14-segments characters with turtle graphics?
I have written the turtle graphics functions that define the fourteen segments, and the functions that assemble these segments to form characters, e.g.
def MethodA (width) :
top_stroke(width)
...
1
vote
2answers
384 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
49 views
Python turtle graphics malfunction on a Mac running OSX 10.6
This is the result when I attempt to run Python turtle graphics on my Mac.
Has anyone else seen this. Are there suggestions for fixing this problem. Thanks
in advance!
$ python
Python 2.6.1 ...
0
votes
0answers
38 views
L-System - Decrease cylinder radius for newer branches
I have a simple 3D L-System made from cylinders, and I currently just go through each symbol in the final string and do appropriate actions like draw, turn, rotate, push and pop. I am aware that push ...
0
votes
2answers
98 views
Design Pattern for Parsing LOGO Turtle Code
In wikipedia, Logo Programming is a multi-paradigm computer programming language used in education. I want to make an application like TurtleGraphicEditor (which using logo programing) using C#. I ...
0
votes
1answer
76 views
drawing concentric squares using TurtleGraphics
okay im trying to draw concentric squares using turtlegraphics, but i cannot figure out how to make the squares not touch each other on one side. any help ?
http://i51.tinypic.com/34gly7b.png
...
0
votes
1answer
170 views
Using turtle graphics in Java?
So, I'm using a special turtle graphics set of classes in Java (but they have all the regular commands: move, paint, turn, etc.). I'm trying to draw a six-point star (which is effectively two ...
0
votes
1answer
135 views
Logo-based simple scripted 3D CAD drawing software
I am not having much luck searching the web and hope maybe to get some help here.
Is there any 3D CAD software out there, freeware, shareware, open-source, or commercial, that uses the simplified ...
0
votes
1answer
270 views
Tkinter Turtles and Threads
world! In turtle graphics in python, there's possible to create various Turtle objects and manipulate them with their methods, forward, backward... I wanted to experiment with threads so I wrote a ...
0
votes
1answer
680 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
579 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 ...