()
| 68 | return new Rad(rem < 0 ? rem + Rad.turn : rem); |
| 69 | } |
| 70 | normalize() { |
| 71 | const rem = this.value % Rad.turn; |
| 72 | this.value = rem < 0 ? rem + Rad.turn : rem; |
| 73 | return this; |
| 74 | } |
| 75 | toRad() { |
| 76 | return this; |
| 77 | } |
nothing calls this directly
no outgoing calls
no test coverage detected