| 29 | # }}} |
| 30 | import numpy as np |
| 31 | class Circle: |
| 32 | MAX_R= 20 |
| 33 | def __init__(self, x,y,r): |
| 34 | self.x = x |
| 35 | self.y = y |
| 36 | self.R = r |
| 37 | self.__perim = 2*r*np.pi; |
| 38 | def area(self): |
| 39 | return np.pi*self.r**2 |
nothing calls this directly
no outgoing calls
no test coverage detected