Units: add AngleOfFriction as another parameter with Angle unit

This commit is contained in:
Bernd Hahnebach
2019-04-26 15:04:18 +02:00
parent 650a181ae7
commit 3650b3e59d
3 changed files with 13 additions and 2 deletions

View File

@@ -461,7 +461,11 @@ Unit Unit::Length(1);
Unit Unit::Area(2);
Unit Unit::Volume(3);
Unit Unit::Mass(0,1);
Unit Unit::Angle(0,0,0,0,0,0,0,1);
// Angle, deg
Unit Unit::Angle (0,0,0,0,0,0,0,1);
Unit Unit::AngleOfFriction (0,0,0,0,0,0,0,1);
Unit Unit::Density(-3,1);
Unit Unit::TimeSpan(0,0,1);