[PD] use same helix angle step as for other features

All other PD features use a step size of 1.0 for angles.

(Personally also for me a step of 5 is not convenient)
This commit is contained in:
donovaly
2021-03-04 01:43:41 +01:00
committed by wwmayer
parent 21d4a37e1f
commit feabd1af30

View File

@@ -73,7 +73,7 @@ PROPERTY_SOURCE(PartDesign::Helix, PartDesign::ProfileBased)
// we purposely use not FLT_MAX because this would not be computable
const App::PropertyFloatConstraint::Constraints floatTurns = { Precision::Confusion(), INT_MAX, 1.0 };
const App::PropertyAngle::Constraints floatAngle = { -89.0, 89.0, 5.0 };
const App::PropertyAngle::Constraints floatAngle = { -89.0, 89.0, 1.0 };
Helix::Helix()
{