| 6 | ) |
| 7 | |
| 8 | type Sphere struct { |
| 9 | Center Vector |
| 10 | Radius float64 |
| 11 | Box Box |
| 12 | } |
| 13 | |
| 14 | func NewSphere(center Vector, radius float64) *Sphere { |
| 15 | min := Vector{center.X - radius, center.Y - radius, center.Z - radius} |
nothing calls this directly
no outgoing calls
no test coverage detected