adding ability to set acceleration on a printer profile
This commit is contained in:
parent
09c553ae64
commit
ec501191dc
12 changed files with 1979 additions and 1875 deletions
|
|
@ -43,6 +43,7 @@ using MatterHackers.Localizations;
|
|||
using MatterHackers.MatterControl.PrinterCommunication.Io;
|
||||
using MatterHackers.MatterControl.PrintQueue;
|
||||
using MatterHackers.MatterControl.SlicerConfiguration;
|
||||
using MatterHackers.VectorMath;
|
||||
|
||||
namespace MatterHackers.MatterControl.Library.Export
|
||||
{
|
||||
|
|
@ -149,7 +150,11 @@ namespace MatterHackers.MatterControl.Library.Export
|
|||
{
|
||||
try
|
||||
{
|
||||
GCodeFileStream gCodeFileStream = new GCodeFileStream(GCodeFile.Load(gcodeFilename, CancellationToken.None));
|
||||
GCodeFileStream gCodeFileStream = new GCodeFileStream(GCodeFile.Load(gcodeFilename,
|
||||
new Vector4(),
|
||||
new Vector4(),
|
||||
new Vector4(),
|
||||
CancellationToken.None));
|
||||
|
||||
var printerSettings = ActiveSliceSettings.Instance;
|
||||
bool addLevelingStream = printerSettings.GetValue<bool>(SettingsKey.print_leveling_enabled) && this.ApplyLeveling;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue