| 6 | * @param {number} height - The height of the cone |
| 7 | */ |
| 8 | export default class Cone { |
| 9 | constructor(baseRadius, height) { |
| 10 | this.baseRadius = baseRadius |
| 11 | this.height = height |
nothing calls this directly
no outgoing calls
no test coverage detected