()
| 138 | return this.value === value; |
| 139 | } |
| 140 | normal() { |
| 141 | const rem = this.value % Deg.turn; |
| 142 | return new Deg(rem < 0 ? rem + Deg.turn : rem); |
| 143 | } |
| 144 | normalize() { |
| 145 | const rem = this.value % Deg.turn; |
| 146 | this.value = rem < 0 ? rem + Deg.turn : rem; |
nothing calls this directly
no outgoing calls
no test coverage detected