MCPcopy Index your code
hub / github.com/mrdoob/three.js / setFromMatrix3Column

Method setFromMatrix3Column

src/math/Vector3.js:1109–1113  ·  view source on GitHub ↗

* 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 )

Source from the content-addressed store, hash-verified

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.

Callers 1

extractBasisMethod · 0.80

Calls 1

fromArrayMethod · 0.95

Tested by

no test coverage detected