CSMSL.Tolerance.Tolerance C# (CSharp) Method

Tolerance() public method

Creates a new tolerance given a unit, value, and whether the tolerance is ±
public Tolerance ( ToleranceUnit unit, double value, ToleranceType type = ToleranceType.PlusAndMinus ) : System
unit ToleranceUnit The units for this tolerance
value double The numerical value of the tolerance
type ToleranceType Whether the tolerance is full or half width
return System
        public Tolerance(ToleranceUnit unit, double value, ToleranceType type = ToleranceType.PlusAndMinus)
        {
            Unit = unit;
            Value = value;
            Type = type;
        }

Same methods

Tolerance::Tolerance ( ToleranceUnit unit, double experimental, double theoretical, ToleranceType type = ToleranceType.PlusAndMinus ) : System
Tolerance::Tolerance ( string s ) : System