From 4447a999edb3407bcb61cc5e0e6b9a7503dc4aa1 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 27 Feb 2018 19:39:54 +0100 Subject: [PATCH] CLI option for anti-crossing --- rug.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rug.cpp b/rug.cpp index d2f70d6e..4cf698ab 100644 --- a/rug.cpp +++ b/rug.cpp @@ -1866,6 +1866,10 @@ int rugArgs() { subdivide_first = true; } + else if(argis("-anticusp")) { + shift(); anticusp_factor = argf(); + } + else return 1; return 0; }