(n)
| 1100 | return this.x.isFinite() && this.y.isFinite() && this.z.isFinite(); |
| 1101 | } |
| 1102 | row(n) { |
| 1103 | return [ |
| 1104 | this[0][n], |
| 1105 | this[1][n], |
| 1106 | this[2][n] |
| 1107 | ]; |
| 1108 | } |
| 1109 | col(n) { |
| 1110 | return this[n]; |
| 1111 | } |
nothing calls this directly
no outgoing calls
no test coverage detected