Tagged Questions
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 ...
3
votes
3answers
94 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
492 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
236 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
345 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
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 ...