UnitSystem inplementation started, Calculation started
This commit is contained in:
14
UnitSystem/Systems/IUnitSystem.cs
Normal file
14
UnitSystem/Systems/IUnitSystem.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user