-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new OM key for move segmentation Codes being printed are output as part of the diagnostics Bug fix: Files starting with digits (but no file paths) could lead to exceptions Bug fix: If the first or last G1 Z parameter were an expression, the file info may not be parsed Bug fix: Model dictionaries were not cleared when they were set to null (e.g. global variables)
- Loading branch information
Showing
12 changed files
with
65 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
namespace DuetAPI.ObjectModel | ||
{ | ||
/// <summary> | ||
/// Move segmentation parameters | ||
/// </summary> | ||
public sealed class MoveSegmentation : ModelObject | ||
{ | ||
/// <summary> | ||
/// Number of segments per second | ||
/// </summary> | ||
public int SegmentsPerSec | ||
{ | ||
get => _segmentsPerSec; | ||
set => SetPropertyValue(ref _segmentsPerSec, value); | ||
} | ||
private int _segmentsPerSec; | ||
|
||
/// <summary> | ||
/// Minimum length of a segment (in mm) | ||
/// </summary> | ||
public float MinSegmentLength | ||
{ | ||
get => _minSegmentLength; | ||
set => SetPropertyValue(ref _minSegmentLength, value); | ||
} | ||
private float _minSegmentLength; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.