| 148 | Item.__init__(self,"cone", (v1,r1,v2,r2),opts,**kwargs) |
| 149 | |
| 150 | class Sphere(Item): |
| 151 | def __init__(self,v,r,*opts,**kwargs): |
| 152 | Item.__init__(self,"sphere",(v,r),opts,**kwargs) |
| 153 | |
| 154 | class Union(Item): |
| 155 | def __init__(self,*opts,**kwargs): |
no outgoing calls
no test coverage detected