-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathautomatic_polycube.yml
More file actions
35 lines (35 loc) · 976 Bytes
/
automatic_polycube.yml
File metadata and controls
35 lines (35 loc) · 976 Bytes
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
description: |
See main app of https://github.com/LIHPC-Computational-Geometry/automatic_polycube
tet-mesh: { # case of 'automatic_polycube' applied on a 'tet-mesh' folder
executable: {
path: AUTOMATIC_POLYCUBE,
filename: automatic_polycube,
command_line: '{mesh} gui=false output={output_labeling}'
},
output_folder: 'automatic_polycube_%d',
arguments: {
input_files: {
mesh: SURFACE_MESH_OBJ
},
output_files: {
output_labeling: SURFACE_LABELING_TXT
}
}
}
labeling: { # case of 'automatic_polycube' applied on a 'labeling' folder
executable: {
path: AUTOMATIC_POLYCUBE,
filename: automatic_polycube,
command_line: '{mesh} {init_labeling} gui=false 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
}
}
}