(i)
| 69204 | return this.distanceSquared(vector); |
| 69205 | } |
| 69206 | getComponent(i) { |
| 69207 | (0, _assertDefault.default)(i >= 0 && i < this.ELEMENTS, "index is out of range"); |
| 69208 | return (0, _validators.checkNumber)(this[i]); |
| 69209 | } |
| 69210 | setComponent(i, value) { |
| 69211 | (0, _assertDefault.default)(i >= 0 && i < this.ELEMENTS, "index is out of range"); |
| 69212 | this[i] = value; |
nothing calls this directly
no outgoing calls
no test coverage detected