aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2019-05-08 11:12:10 +0300
committerShlomo Hecht <shlomo@twine-s.com>2019-05-08 11:12:10 +0300
commit0503a28d97982f9dcaa29a1c1d10b1583b7f53cc (patch)
tree956d894ecf5fee80cd9e5dcd29133241b7cfc923 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs
parentbb9e43ebfa3d358e280f35669842680d32361dd7 (diff)
parent524bb9f5eff88e3b624b5e18da2e771fd6fe787a (diff)
downloadTango-0503a28d97982f9dcaa29a1c1d10b1583b7f53cc.tar.gz
Tango-0503a28d97982f9dcaa29a1c1d10b1583b7f53cc.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs
index e6d5674e1..2099b12d9 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs
@@ -24,9 +24,22 @@ namespace Tango.MachineStudio.Developer
public String DefaultJobRmlGuid { get; set; }
+ /// <summary>
+ /// Gets or sets a value indicating whether to enable gradient generation.
+ /// </summary>
+ public bool EnableGradientGeneration { get; set; }
+
+ /// <summary>
+ /// Gets or sets the gradient resolution in centimeters.
+ /// </summary>
+ public int GradientResolutionCM { get; set; }
+
public DeveloperModuleSettings()
{
ProcessParametersIndices = new List<ParameterIndex>();
+
+ EnableGradientGeneration = true;
+ GradientResolutionCM = 500;
}
}
}