@duet3d/objectmodel 3.5.0-b10 → 3.5.0-b11
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
|
@@ -31,6 +31,7 @@ export declare class Move extends ModelObject {
|
|
|
31
31
|
readonly calibration: MoveCalibration;
|
|
32
32
|
readonly compensation: MoveCompensation;
|
|
33
33
|
readonly currentMove: CurrentMove;
|
|
34
|
+
currentZHop: number;
|
|
34
35
|
readonly extruders: ModelCollection<Extruder>;
|
|
35
36
|
readonly idle: MotorsIdleControl;
|
|
36
37
|
kinematics: Kinematics;
|
package/dist/move/index.js
CHANGED
|
@@ -66,6 +66,7 @@ class Move extends ModelObject_1.default {
|
|
|
66
66
|
this.calibration = new MoveCalibration_1.default();
|
|
67
67
|
this.compensation = new MoveCompensation_1.default();
|
|
68
68
|
this.currentMove = new CurrentMove();
|
|
69
|
+
this.currentZHop = 0;
|
|
69
70
|
this.extruders = new ModelCollection_1.default(Extruder_1.default);
|
|
70
71
|
this.idle = new MotorsIdleControl();
|
|
71
72
|
this.kinematics = new kinematics_1.default();
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import ModelObject from "../../ModelObject";
|
|
2
2
|
export declare enum KinematicsName {
|
|
3
3
|
cartesian = "cartesian",
|
|
4
|
-
coreXY = "
|
|
5
|
-
coreXYU = "
|
|
6
|
-
coreXYUV = "
|
|
7
|
-
coreXZ = "
|
|
8
|
-
markForged = "
|
|
9
|
-
fiveBarScara = "
|
|
10
|
-
hangprinter = "
|
|
4
|
+
coreXY = "coreXY",
|
|
5
|
+
coreXYU = "coreXYU",
|
|
6
|
+
coreXYUV = "coreXYUV",
|
|
7
|
+
coreXZ = "coreXZ",
|
|
8
|
+
markForged = "markForged",
|
|
9
|
+
fiveBarScara = "FiveBarScara",
|
|
10
|
+
hangprinter = "Hangprinter",
|
|
11
11
|
delta = "delta",
|
|
12
|
-
polar = "
|
|
13
|
-
rotaryDelta = "
|
|
14
|
-
scara = "
|
|
12
|
+
polar = "Polar",
|
|
13
|
+
rotaryDelta = "Rotary delta",
|
|
14
|
+
scara = "Scara",
|
|
15
15
|
unknown = "unknown"
|
|
16
16
|
}
|
|
17
17
|
export declare class MoveSegmentation extends ModelObject {
|
|
@@ -5,17 +5,17 @@ const ModelObject_1 = require("../../ModelObject");
|
|
|
5
5
|
var KinematicsName;
|
|
6
6
|
(function (KinematicsName) {
|
|
7
7
|
KinematicsName["cartesian"] = "cartesian";
|
|
8
|
-
KinematicsName["coreXY"] = "
|
|
9
|
-
KinematicsName["coreXYU"] = "
|
|
10
|
-
KinematicsName["coreXYUV"] = "
|
|
11
|
-
KinematicsName["coreXZ"] = "
|
|
12
|
-
KinematicsName["markForged"] = "
|
|
13
|
-
KinematicsName["fiveBarScara"] = "
|
|
14
|
-
KinematicsName["hangprinter"] = "
|
|
8
|
+
KinematicsName["coreXY"] = "coreXY";
|
|
9
|
+
KinematicsName["coreXYU"] = "coreXYU";
|
|
10
|
+
KinematicsName["coreXYUV"] = "coreXYUV";
|
|
11
|
+
KinematicsName["coreXZ"] = "coreXZ";
|
|
12
|
+
KinematicsName["markForged"] = "markForged";
|
|
13
|
+
KinematicsName["fiveBarScara"] = "FiveBarScara";
|
|
14
|
+
KinematicsName["hangprinter"] = "Hangprinter";
|
|
15
15
|
KinematicsName["delta"] = "delta";
|
|
16
|
-
KinematicsName["polar"] = "
|
|
17
|
-
KinematicsName["rotaryDelta"] = "
|
|
18
|
-
KinematicsName["scara"] = "
|
|
16
|
+
KinematicsName["polar"] = "Polar";
|
|
17
|
+
KinematicsName["rotaryDelta"] = "Rotary delta";
|
|
18
|
+
KinematicsName["scara"] = "Scara";
|
|
19
19
|
KinematicsName["unknown"] = "unknown";
|
|
20
20
|
})(KinematicsName = exports.KinematicsName || (exports.KinematicsName = {}));
|
|
21
21
|
class MoveSegmentation extends ModelObject_1.default {
|