Code
	n.x = A.y * B.z - A.z * B.y ;
	n.y = A.x * B.z - A.z * B.x ;
	n.z = A.x * B.y - A.y * B.x ;


well, that is how cross product of 3D vectors is computed wink