/// <summary> /// Returns a quantity indicating whether this instance is equal to a specified <see cref="Gu.Units.AreaDensity"/> object within the given tolerance. /// </summary> /// <returns> /// true if <paramref name="other"/> represents the same AreaDensity as this instance; otherwise, false. /// </returns> /// <param name="other">An instance of <see cref="Gu.Units.AreaDensity"/> object to compare with this instance.</param> /// <param name="tolerance">The maximum difference for being considered equal. Must be greater than zero.</param> public bool Equals(AreaDensity other, AreaDensity tolerance) { Ensure.GreaterThan(tolerance.kilogramsPerSquareMetre, 0, nameof(tolerance)); return(Math.Abs(this.kilogramsPerSquareMetre - other.kilogramsPerSquareMetre) < tolerance.kilogramsPerSquareMetre); }
/// <summary> /// Compares this instance to a specified <see cref="Gu.Units.AreaDensity"/> object and returns an integer that indicates whether this <paramref name="quantity"/> is smaller than, equal to, or greater than the <see cref="Gu.Units.AreaDensity"/> object. /// </summary> /// <returns> /// A signed number indicating the relative quantitys of this instance and <paramref name="quantity"/>. /// /// Value /// /// Description /// /// A negative integer /// /// This instance is smaller than <paramref name="quantity"/>. /// /// Zero /// /// This instance is equal to <paramref name="quantity"/>. /// /// A positive integer /// /// This instance is larger than <paramref name="quantity"/>. /// /// </returns> /// <param name="quantity">An instance of <see cref="Gu.Units.AreaDensity"/> object to compare to this instance.</param> public int CompareTo(AreaDensity quantity) { return(this.kilogramsPerSquareMetre.CompareTo(quantity.kilogramsPerSquareMetre)); }
/// <summary> /// Returns a quantity indicating whether this instance is equal to a specified <see cref="Gu.Units.AreaDensity"/> object. /// </summary> /// <returns> /// true if <paramref name="other"/> represents the same AreaDensity as this instance; otherwise, false. /// </returns> /// <param name="other">An instance of <see cref="Gu.Units.AreaDensity"/> object to compare with this instance.</param> public bool Equals(AreaDensity other) { return(this.kilogramsPerSquareMetre.Equals(other.kilogramsPerSquareMetre)); }
/// <summary> /// Creates an instance of <see cref="Gu.Units.AreaDensity"/> from its string representation /// </summary> /// <param name="text">The string representation of the <see cref="Gu.Units.AreaDensity"/></param> /// <param name="styles">Specifies the <see cref="NumberStyles"/> to be used.</param> /// <param name="result">The parsed <see cref="AreaDensity"/></param> /// <returns>True if an instance of <see cref="AreaDensity"/> could be parsed from <paramref name="text"/></returns> public static bool TryParse(string text, NumberStyles styles, out AreaDensity result) { return(QuantityParser.TryParse <AreaDensityUnit, AreaDensity>(text, From, styles, CultureInfo.CurrentCulture, out result)); }
/// <summary> /// Creates an instance of <see cref="Gu.Units.AreaDensity"/> from its string representation /// </summary> /// <param name="text">The string representation of the <see cref="Gu.Units.AreaDensity"/></param> /// <param name="styles">Specifies the <see cref="NumberStyles"/> to be used.</param> /// <param name="provider">Specifies the formatProvider to be used.</param> /// <param name="result">The parsed <see cref="AreaDensity"/></param> /// <returns>True if an instance of <see cref="AreaDensity"/> could be parsed from <paramref name="text"/></returns> public static bool TryParse(string text, NumberStyles styles, IFormatProvider provider, out AreaDensity result) { return(QuantityParser.TryParse <AreaDensityUnit, AreaDensity>(text, From, styles, provider, out result)); }
public static AreaDensity operator /(Mass left, Area right) { return(AreaDensity.FromKilogramsPerSquareMetre(left.kilograms / right.squareMetres)); }
/// <summary> /// Divides <paramref name="left"/> by <paramref name="right"/> /// </summary> /// <param name="left">The left value</param> /// <param name="right">The right value</param> /// <returns>The <see cref="AreaDensity"/> that is the result from the division.</returns> public static AreaDensity operator /(Length left, SpecificVolume right) { return(AreaDensity.FromKilogramsPerSquareMetre(left.metres / right.cubicMetresPerKilogram)); }
/// <summary> /// Multiplies <paramref name="left"/> with <paramref name="right"/> /// </summary> /// <param name="left">The left value</param> /// <param name="right">The right value</param> /// <returns>The <see cref="AreaDensity"/> that is the result from the multiplication.</returns> public static AreaDensity operator *(Length left, Density right) { return(AreaDensity.FromKilogramsPerSquareMetre(left.metres * right.kilogramsPerCubicMetre)); }
public static AreaDensity operator /(Pressure left, Acceleration right) { return(AreaDensity.FromKilogramsPerSquareMetre(left.pascals / right.metresPerSecondSquared)); }
/// <summary> /// Divides <paramref name="left"/> by <paramref name="right"/> /// </summary> /// <param name="left">The left value</param> /// <param name="right">The right value</param> /// <returns>The <see cref="AreaDensity"/> that is the result from the division.</returns> public static AreaDensity operator /(Momentum left, VolumetricFlow right) { return(AreaDensity.FromKilogramsPerSquareMetre(left.newtonSecond / right.cubicMetresPerSecond)); }