-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathautomatic_polycube_gui.yml
37 lines (37 loc) · 1.02 KB
/
automatic_polycube_gui.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
description: |
See main app of https://github.com/LIHPC-Computational-Geometry/automatic_polycube
tet-mesh: { # case of 'automatic_polycube_gui' applied on a 'tet-mesh' folder
executable: {
path: AUTOMATIC_POLYCUBE,
filename: automatic_polycube,
command_line: '{mesh} gui=true'
},
output_folder: 'automatic_polycube_%d',
arguments: {
input_files: {
mesh: SURFACE_MESH_OBJ
},
output_files: {
labeling: SURFACE_LABELING_TXT
}
},
note: "Save the output file as {labeling}"
}
labeling: { # case of 'automatic_polycube_gui' applied on a 'labeling' folder
executable: {
path: AUTOMATIC_POLYCUBE,
filename: automatic_polycube,
command_line: '{mesh} {init_labeling} gui=true output={output_labeling}'
},
output_folder: 'automatic_polycube_%d',
arguments: {
input_files: {
mesh: SURFACE_MESH_OBJ,
init_labeling: SURFACE_LABELING_TXT
},
output_files: {
output_labeling: SURFACE_LABELING_TXT
}
},
note: "Save the output file as {output_labeling}"
}