updateRotationVector method

void updateRotationVector()

Implementation

void updateRotationVector () {
	rotationVector.x = ( - moveState.pitchDown + moveState.pitchUp );
	rotationVector.y = ( - moveState.yawRight + moveState.yawLeft );
	rotationVector.z = ( - moveState.rollRight + moveState.rollLeft );
}