fromMatrix3Column method

Vector3 fromMatrix3Column(
  1. Matrix3 m,
  2. int i
)

Sets the components of this 3D vector from a column of a 3x3 matrix.

Implementation

Vector3 fromMatrix3Column(Matrix3  m, int i ) {
	return fromArray( m.elements, i * 3 );
}