コード例 #1
0
        /// <summary>
        /// Gets a vector with the minimum 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 minimum x,y and z values of both vectors.</returns>
        #region public static JVector Min(JVector value1, JVector value2)

        public static FPVector Min(FPVector value1, FPVector value2)
        {
            FPVector result;

            FPVector.Min(ref value1, ref value2, out result);
            return(result);
        }