public static double AngleBetweenUnitVectors(DSVector one, DSVector two) { var dp = one.Dot(two); return(RadiansToDegrees(Math.Acos(dp))); }