thanks to everybody
the url from where i downloaded the last version is:
http://sourceforge.net/projects/randoms ... rce=navbarthe code in that python module is:
import random
import turtle
from turtle import *
#shapes = random.randrange(5, 50)
shapes = int(raw_input('How many Shapes '))
turtle.screensize(100, 100)
colormode(255)
r = random.randrange(0, 255)
g=random.randrange(0, 255)
b=random.randrange(0, 255)
bgcolor(r,g,b)
scount = shapes
LengthU = 600
LengthL = 590
while scount != 0:
r = random.randrange(1, 255)
b = random.randrange(1, 255)
g = random.randrange(1, 255)
fillcolor(r,b,g)
pencolor(r,b,g)
sides = random.randrange(3, 12)
angle = ((sides-2)*180)/sides
angleO = 180-angle
count = sides
length = random.randrange(LengthL/sides, LengthU/sides)
if LengthL-20 !=20:
LengthL -=20
if LengthU-20 !=30:
LengthU -=20
x = random.randrange(-250,250)
y = random.randrange(-250,250)
lastx = x
lasty=y
penup()
turtle.setx(x)
turtle.sety(y)
pendown()
turtle.fill(True)
while count!=0:
forward(length)
left(angleO)
count-=1
scount-=1
turtle.fill(False)
while 1:
temp=0
using python console it seems that module turtle is non accepted (i have a turtle.py in the python library)
i'm not a plugin developer: is this NOT a plugin for gimp?
thanks