summarylogtreecommitdiffstats
path: root/mesh_arg_is_not_optional.patch
diff options
context:
space:
mode:
authorLuckyTurtleDev2022-11-20 15:08:14 +0100
committerLuckyTurtleDev2022-11-20 15:08:14 +0100
commitc5d8f635dba539c72b90d80eec6638ea84c8301b (patch)
tree176be8778665f4d4333a65790d32f06864508ba1 /mesh_arg_is_not_optional.patch
downloadaur-c5d8f635dba539c72b90d80eec6638ea84c8301b.tar.gz
init
Diffstat (limited to 'mesh_arg_is_not_optional.patch')
-rw-r--r--mesh_arg_is_not_optional.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/mesh_arg_is_not_optional.patch b/mesh_arg_is_not_optional.patch
new file mode 100644
index 000000000000..5e07f0bb3aba
--- /dev/null
+++ b/mesh_arg_is_not_optional.patch
@@ -0,0 +1,14 @@
+diff --git a/main.py b/main_new.py
+index 5435dc7..4d34981 100644
+--- a/main.py
++++ b/main_new.py
+@@ -18,8 +18,7 @@ parser.add_argument('--initsample', help='number of initial samples sent to' \
+ 'sketch', default=1000)
+ parser.add_argument('--max_iter', help='max number of iterations used by ' \
+ 'sketch to solve each part', default=10)
+-parser.add_argument('--mesh', help='location of the .off file',
+- default='example/one_cube/csg.off')
++parser.add_argument('mesh', help='location of the .off file')
+ parser.add_argument('--method', help='choose "sketch" or "genetic"',
+ default='sketch')
+ parser.add_argument('--outdir', help='a folder to store all results',