(expTerm = 0, exponent = 0, linearTerm = 0, constantTerm = 0)
| 12 | ) {} |
| 13 | |
| 14 | set(expTerm = 0, exponent = 0, linearTerm = 0, constantTerm = 0): this { |
| 15 | this.expTerm = expTerm |
| 16 | this.exponent = exponent |
| 17 | this.linearTerm = linearTerm |
| 18 | this.constantTerm = constantTerm |
| 19 | return this |
| 20 | } |
| 21 | |
| 22 | clone(): DensityProfile { |
| 23 | return new DensityProfile( |
nothing calls this directly
no outgoing calls
no test coverage detected