DynamoVisualProgramming.ZeroTouchLibrary by Autodesk

<PackageReference Include="DynamoVisualProgramming.ZeroTouchLibrary" Version="3.0.0-beta6996" />

 Length

A length stored in meters. This length can represent any unit type, but internally this is stored as meters to make algorithms simpler.
public const string CENTIMETERS = "cm"

public const string FEET = "ft"

public const string INCHES = "in"

public const string METERS = "m"

public const string MILLIMETERS = "mm"

public static Dictionary<string, double> Conversions { get; }

public static double ToCentimeter { get; }

public static double ToFoot { get; }

public static double ToInch { get; }

public static double ToMeter { get; }

public static double ToMillimeter { get; }

public LengthUnit LengthUnit { get; set; }

public double UiLengthConversion { get; }

public static Length FromDouble(double value)

public static Length FromDouble(double value, LengthUnit unit)

public static Length FromFeet(double value)

public static Length FromFeet(double value, LengthUnit unit)

public int CompareTo(object obj)

public bool Equals(Length other)