while azi < 360.0 : 
                    x = x1 + radius * math.sin(degreesToRadians(azi))
                    y = y1 + radius * math.cos(degreesToRadians(azi))
                    azi += 10.0 
                    outPoints.append(getStringFromXY(x, y))