invisible linestyle
This commit is contained in:
parent
05d7cc0a77
commit
1423dca285
2
Makefile
2
Makefile
@ -109,6 +109,8 @@ selfcrossing-1-before_2LINESTYLE = dotted
|
||||
selfcrossing-1-before_3SELECT = wm_visuals where name='selfcrossing-1-newline'
|
||||
selfcrossing-1-after_WIDTHDIV = 4
|
||||
selfcrossing-1-after_1SELECT = wm_debug where name='selfcrossing-1' AND stage='dcrossings' AND gen=1
|
||||
selfcrossing-1-after_2SELECT = wm_debug where name='selfcrossing-1' AND stage='bbends' AND gen=1
|
||||
selfcrossing-1-after_2LINESTYLE = invisible
|
||||
|
||||
.faux_test-integration: tests-integration.sql wm.sql .faux_aggregate-rivers
|
||||
./db -f $<
|
||||
|
@ -50,8 +50,11 @@ def plot_args(color, maybe_cmap, maybe_linestyle):
|
||||
else:
|
||||
r = {'color': color}
|
||||
|
||||
if maybe_linestyle:
|
||||
if maybe_linestyle == 'invisible':
|
||||
r['color'] = (0, 0, 0, 0)
|
||||
elif maybe_linestyle:
|
||||
r['linestyle'] = maybe_linestyle
|
||||
|
||||
return r
|
||||
|
||||
def main():
|
||||
|
Loading…
Reference in New Issue
Block a user