/// <summary> /// Calculates the division of a float scalar with a <see cref="Shift3f"/>. /// </summary> public static Shift3f operator /(float val, Shift3f shift) { return(Shift3f.Divide(val, shift)); }
/// <summary> /// Calculates the division of a <see cref="Shift3f"/> with a float scalar. /// </summary> public static Shift3f operator /(Shift3f shift, float val) { return(Shift3f.Divide(shift, val)); }