mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-24 09:26:43 +01:00
force solve action
This commit is contained in:
parent
63cfe69b5e
commit
bf7b1e87e3
1 changed files with 6 additions and 0 deletions
|
|
@ -111,6 +111,11 @@ TCAD.App2D = function() {
|
|||
|
||||
analyze : function() {
|
||||
app.viewer.parametricManager.analyze(alert);
|
||||
},
|
||||
|
||||
solve : function() {
|
||||
app.viewer.parametricManager.solve([], 0);
|
||||
app.viewer.refresh();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -129,6 +134,7 @@ TCAD.App2D = function() {
|
|||
actionsF.add(actions, 'R = R');
|
||||
actionsF.add(actions, 'tangent');
|
||||
actionsF.add(actions, 'lock');
|
||||
actionsF.add(actions, 'solve');
|
||||
actionsF.add(actions, 'analyze');
|
||||
actionsF.open();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue