16 lines
371 B
C#
16 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelper.Infrastructure.UI.Converters.Units
|
|
{
|
|
internal static class UnitConstatnts
|
|
{
|
|
public static double Length = 1e3d;
|
|
public static double Force = 1e-3d;
|
|
public static double Stress = 1e-6d;
|
|
}
|
|
}
|