[Core] add missing velocity property

- fixes compilation because declared in header but no code
- also sort the properties to keep the overview
This commit is contained in:
Uwe
2023-02-26 16:09:31 +01:00
parent a16073c91d
commit eb24cf2638
2 changed files with 84 additions and 73 deletions

View File

@@ -837,3 +837,15 @@ PropertyInverseVolume::PropertyInverseVolume()
{
setUnit(Base::Unit::InverseVolume);
}
//**************************************************************************
//**************************************************************************
// PropertyVelocity
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TYPESYSTEM_SOURCE(App::PropertyVelocity, App::PropertyQuantity)
PropertyVelocity::PropertyVelocity()
{
setUnit(Base::Unit::Velocity);
}