Skip to content

Commit c954977

Browse files
committed
Tweak default dot radius one final time
After testing, a dot radius of 12 seems to be a good default.
1 parent 9d49a0d commit c954977

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extractpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ def parse_args():
716716
parser.add_argument('-l', '--show-lines', action = "store_true", help = "Show the midlines of the glyph")
717717
parser.add_argument('-d', '--show-dots', action = "store_true", help = "Show the dots that make the dotted version")
718718
parser.add_argument('-g', '--show-glyph', action = "store_true", help = "Show the glyph outline")
719-
parser.add_argument('-r', '--radius', action = "store", type = float, default = 15, help = "Radius of dots, in em units (default 15)")
719+
parser.add_argument('-r', '--radius', action = "store", type = float, default = 12, help = "Radius of dots, in em units (default 12)")
720720
parser.add_argument('-s', '--spacing', action = "store", type = float, default = 6.0, help = "Spacing of dots, as a multiple of dot radius (default 6.0 for 600%%)")
721721
args = parser.parse_args()
722722
args.visualize = (args.show_triangles or args.show_lines or args.show_dots or args.show_glyph)

0 commit comments

Comments
 (0)