Skip to content

Commit

Permalink
fixes #2702: Default cylinder angle 10 deg
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Sep 24, 2016
1 parent ee07ff6 commit cb3da6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/PartDesign/App/FeaturePrimitive.cpp
Expand Up @@ -215,7 +215,7 @@ PROPERTY_SOURCE(PartDesign::Cylinder, PartDesign::FeaturePrimitive)
Cylinder::Cylinder()
{
ADD_PROPERTY_TYPE(Radius,(10.0f),"Cylinder",App::Prop_None,"The radius of the cylinder");
ADD_PROPERTY_TYPE(Angle,(10.0f),"Cylinder",App::Prop_None,"The closing angel of the cylinder ");
ADD_PROPERTY_TYPE(Angle,(360.0f),"Cylinder",App::Prop_None,"The closing angel of the cylinder ");

This comment has been minimized.

Copy link
@tomate44

tomate44 Sep 25, 2016

Contributor

Werner, there's a typo here : "angel" -> "angle"
Doing a commit / PR myself would probably be overkill ?

This comment has been minimized.

Copy link
@wwmayer

wwmayer Sep 27, 2016

Author Contributor

Thanks, It's fixed now.

ADD_PROPERTY_TYPE(Height,(10.0f),"Cylinder",App::Prop_None,"The height of the cylinder");
Angle.setConstraints(&angleRangeU);
Radius.setConstraints(&quantityRange);
Expand Down

0 comments on commit cb3da6f

Please sign in to comment.