Skip to content

Commit f22e2d9

Browse files
committed
Greatly increase default dot size
Smaller dots look good on the screen, but not so good when printed
1 parent a0d7a68 commit f22e2d9

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
@@ -705,7 +705,7 @@ def parse_args():
705705
parser.add_argument('-l', '--show-lines', action = "store_true", help = "Show the midlines of the glyph")
706706
parser.add_argument('-d', '--show-dots', action = "store_true", help = "Show the dots that make the dotted version")
707707
parser.add_argument('-g', '--show-glyph', action = "store_true", help = "Show the glyph outline")
708-
parser.add_argument('-r', '--radius', action = "store", type = float, default = 5, help = "Radius of dots, in em units (default 5)")
708+
parser.add_argument('-r', '--radius', action = "store", type = float, default = 15, help = "Radius of dots, in em units (default 15)")
709709
parser.add_argument('-s', '--spacing', action = "store", type = float, default = 3.0, help = "Spacing of dots, as a multiple of dot radius (default 3.0 for 300%%)")
710710
args = parser.parse_args()
711711
if not (args.show_triangles or args.show_lines or args.show_dots):

0 commit comments

Comments
 (0)