* Sets the vector components from the specified matrix column. * * @param {Matrix3} m - The 3x3 matrix. * @param {number} index - The column index. * @return {Vector3} A reference to this vector.
( m, index )
| 1107 | * @return {Vector3} A reference to this vector. |
| 1108 | */ |
| 1109 | setFromMatrix3Column( m, index ) { |
| 1110 | |
| 1111 | return this.fromArray( m.elements, index * 3 ); |
| 1112 | |
| 1113 | } |
| 1114 | |
| 1115 | /** |
| 1116 | * Sets the vector components from the given Euler angles. |