mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 08:25:19 +01:00
get info action and test feature added
This commit is contained in:
parent
87666bacbd
commit
ee43515401
4 changed files with 12476 additions and 39 deletions
|
|
@ -110,10 +110,11 @@ Generate `Tauri` Build for desktop
|
|||
|
||||
### Install Tauri Deps
|
||||
|
||||
Navigate to the [scripts](./scripts/) folder and run the following command:
|
||||
Run the following command:
|
||||
|
||||
```bash
|
||||
chmod +x ./setup_tauri.sh
|
||||
chmod +x ./scripts/setup_tauri_dev_linux.sh
|
||||
sudo ./scripts/setup_tauri_dev_linux.sh
|
||||
```
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ export const GetInfo: any = {
|
|||
const targetBody = params.targetBody;
|
||||
|
||||
let resultingMessage = "";
|
||||
console.log(params);
|
||||
|
||||
|
||||
if (targetBody instanceof MEdge){
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ import {DeleteBodyOperation} from "./features/deleteBody/deleteBody.operation";
|
|||
import { DefeatureRemoveFaceOperation } from "./features/defeatureRemoveFace/defeatureRemoveFace.operation";
|
||||
import { WireLineOperation } from "./features/wireLine/wireLine";
|
||||
import { MoveBodyOperation } from "./features/moveBody/moveBody.operation";
|
||||
import { TestFeatureOperation } from "./features/testFeature/testFeature.operation";
|
||||
//import {TestOperation} from "./features/test/test.operation";
|
||||
//imports of action type commands
|
||||
import { GetInfo } from "./actions/getInfo/getInfo.action";
|
||||
|
|
@ -61,6 +62,7 @@ export const ModelerWorkspace: WorkbenchConfig = {
|
|||
WireLineOperation,
|
||||
MoveBodyOperation,
|
||||
SimplifyOperation,
|
||||
TestFeatureOperation,
|
||||
//TestOperation,
|
||||
|
||||
GetInfo,
|
||||
|
|
@ -90,8 +92,8 @@ export const ModelerWorkspace: WorkbenchConfig = {
|
|||
["WIRE_LINE"],
|
||||
|
||||
['EXPORT_BREP', 'GET_INFO'],
|
||||
|
||||
//["TEST"]
|
||||
['TestFeature_TOOL'],
|
||||
|
||||
]
|
||||
},
|
||||
|
|
|
|||
12433
package-lock.json
generated
Normal file
12433
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue