#sine and cosine stuff prints out (x,y) coordinates #centered on (200,200). see python 11 import math degrees = 270 for i in range(20): xpt = 200 + int(50 * math.cos(degrees * math.pi/180)) ypt = 200 + int(50 * math.sin(degrees * math.pi/180)) print "xpt:",xpt," ypt:",ypt degrees = degrees + 10