Files
GroundOrganizer/Geometry/UnitsEnums.cs
2026-01-06 02:07:18 +03:00

12 lines
491 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public enum UnitsLin { м = 1, см = 2, мм = 3, _ = 0 }
public enum UnitsArea { м = 1, см = 2, мм = 3, _ = 0 }
public enum UnitsForce { т = 1, кН = 3, Н = 4, кг = 2, _ = 0 }
public enum UnitsStress { т = 1, кН = 2, Н = 3, МПа = 4, кПа = 5, _ = 0 }
public enum UnitsList { _, м, см, мм, т, кг, Н, кН, кПа, МПа, градус, rad }