14 lines
404 B
C#
14 lines
404 B
C#
using System;
|
|
using StructureHelper.UnitSystem.Enums;
|
|
|
|
namespace StructureHelper.UnitSystem.Systems
|
|
{
|
|
public interface IUnitSystem
|
|
{
|
|
string Name { get; }
|
|
Tuple<Force, MultiplyPrefix> ForceUnits { get; }
|
|
Tuple<Pressure, MultiplyPrefix> PressureUnits { get; }
|
|
Tuple<Length, MultiplyPrefix> LengthUnits { get; }
|
|
double ConvertLength(double length);
|
|
}
|
|
} |