@duet3d/objectmodel 3.5.0-beta.35 → 3.5.0-beta.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/move/index.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ export declare class Move extends ModelObject {
|
|
|
41
41
|
noMovesBeforeHoming: boolean;
|
|
42
42
|
printingAcceleration: number;
|
|
43
43
|
readonly queue: ModelCollection<MoveQueueItem>;
|
|
44
|
+
reducedAcceleration: number;
|
|
44
45
|
readonly rotation: MoveRotation;
|
|
45
46
|
readonly shaping: InputShaping;
|
|
46
47
|
speedFactor: number;
|
package/dist/move/index.js
CHANGED
|
@@ -76,6 +76,7 @@ class Move extends ModelObject_1.default {
|
|
|
76
76
|
this.noMovesBeforeHoming = true;
|
|
77
77
|
this.printingAcceleration = 10000;
|
|
78
78
|
this.queue = new ModelCollection_1.default(MoveQueueItem);
|
|
79
|
+
this.reducedAcceleration = 10000;
|
|
79
80
|
this.rotation = new MoveRotation();
|
|
80
81
|
this.shaping = new InputShaping_1.default();
|
|
81
82
|
this.speedFactor = 1;
|