* Sets the vector components from the specified matrix column. * * @param {Matrix4} m - The 4x4 matrix. * @param {number} index - The column index. * @return {Vector3} A reference to this vector.
( m, index )
| 1094 | * @return {Vector3} A reference to this vector. |
| 1095 | */ |
| 1096 | setFromMatrixColumn( m, index ) { |
| 1097 | |
| 1098 | return this.fromArray( m.elements, index * 4 ); |
| 1099 | |
| 1100 | } |
| 1101 | |
| 1102 | /** |
| 1103 | * Sets the vector components from the specified matrix column. |
no test coverage detected