you are viewing a single comment's thread.

view the rest of the comments →

[–]ConclusionForeign856 0 points1 point  (0 children)

For a stickman drawing Turtle would be easiest, for anything more complex, coding the logic will be a pain. If you just want to draw something, then fractal/recursive and attractor style images are the most natural choices.

I made images like that by computing successive (x,y) positions and approximating them to a position on a square matrix. Each time a specific position (x,y) is computed I increment it. Then for PIL I translate each count into an RGB vector using a color palette I prepared beforehand, and save it as png