mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 04:45:06 +01:00
change labels
This commit is contained in:
parent
fd92fe5f1e
commit
6a31f7a4c2
1 changed files with 3 additions and 3 deletions
|
|
@ -70,9 +70,9 @@ ExtrudeWizard.prototype.createUI = function (depth, scale, deflection, angle) {
|
|||
var folder = new tk.Folder(this.invert ? "Cut Options" : "Extrude Options");
|
||||
tk.add(ui.box, folder);
|
||||
ui.theValue = tk.config(new tk.Number(this.invert ? "Depth" : "Height", depth), {min: 0});
|
||||
ui.scale = tk.config(new tk.Number("Expansion", scale, 0.1, 1), {min:0});
|
||||
ui.deflection = new tk.Number("Deflection", deflection, 1);
|
||||
ui.angle = new tk.Number("Angle", angle, 5);
|
||||
ui.scale = tk.config(new tk.Number("Prism", scale, 0.1, 1), {min:0});
|
||||
ui.deflection = new tk.Number("Angle", deflection, 1);
|
||||
ui.angle = new tk.Number("Rotation", angle, 5);
|
||||
var onChange = tk.methodRef(this, "synch");
|
||||
ui.theValue.input.on('t-change', onChange);
|
||||
ui.scale.input.on('t-change', onChange);
|
||||
|
|
|
|||
Loading…
Reference in a new issue