New ImageConverter has reached first ship candidate

This commit is contained in:
Lars Brubaker 2021-08-20 09:57:38 -07:00
parent ffeb157e90
commit c2a8ed5762
9 changed files with 95 additions and 26 deletions

View file

@ -68,11 +68,11 @@ namespace MatterHackers.MatterControl.DesignTools
public double Diameter { get; set; } = double.MinValue;
[Range(3, 360, ErrorMessage = "Value for {0} must be between {1} and {2}.")]
[Slider(3, 360, 1)]
[Description("Ensures the rotated part has a minimum number of sides per complete rotation")]
public double MinSidesPerRotation { get; set; } = 3;
[Range(0, 100, ErrorMessage = "Value for {0} must be between {1} and {2}.")]
[Slider(0, 100, 1)]
[Description("Where to start the bend as a percent of the width of the part")]
public double StartPercent { get; set; } = 50;