@duet3d/objectmodel 3.5.2 → 3.6.0-alpha.1
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.
|
@@ -12,9 +12,8 @@ export declare enum InputShapingType {
|
|
|
12
12
|
export declare class InputShaping extends ModelObject {
|
|
13
13
|
amplitudes: Array<number>;
|
|
14
14
|
damping: number;
|
|
15
|
-
|
|
15
|
+
delays: Array<number>;
|
|
16
16
|
frequency: number;
|
|
17
|
-
reductionLimit: number;
|
|
18
17
|
type: InputShapingType;
|
|
19
18
|
}
|
|
20
19
|
export default InputShaping;
|
|
@@ -18,9 +18,8 @@ class InputShaping extends ModelObject_1.default {
|
|
|
18
18
|
super(...arguments);
|
|
19
19
|
this.amplitudes = [];
|
|
20
20
|
this.damping = 0.1;
|
|
21
|
-
this.
|
|
21
|
+
this.delays = [];
|
|
22
22
|
this.frequency = 40;
|
|
23
|
-
this.reductionLimit = 10;
|
|
24
23
|
this.type = InputShapingType.none;
|
|
25
24
|
}
|
|
26
25
|
}
|