赞
踩
from random import randint,randrange
import pygame
from math import sqrt,pi
class Ball(object):
def __init__(self, center, color, radius, sx, sy):
self._center = center
self._color = color
self._radius = radius
self._sx = sx
self._sy = sy
@property
def center(self):
return self._center
@property
def radius(self):
return self._radius
@radius.setter
def
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。