/// <summary> /// Gets a vector with the maximum x,y and z values of both vectors. /// </summary> /// <param name="value1">The first value.</param> /// <param name="value2">The second value.</param> /// <returns>A vector with the maximum x,y and z values of both vectors.</returns> #region public static JVector Max(JVector value1, JVector value2) public static FPVector Max(FPVector value1, FPVector value2) { FPVector result; FPVector.Max(ref value1, ref value2, out result); return(result); }