File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ def vertical(self):
267
267
return np .empty ((0 , 2 )), np .empty (0 , Path .code_type )
268
268
269
269
def north_east (self ):
270
- num_lines = int (self .kwargs ["scale" ])
270
+ num_lines = int (self .kwargs ["scale" ]) * 2
271
271
if num_lines :
272
272
num_vertices = (num_lines + 1 ) * 2
273
273
else :
@@ -286,7 +286,7 @@ def north_east(self):
286
286
return vertices , codes
287
287
288
288
def south_east (self ):
289
- num_lines = int (self .kwargs ["scale" ])
289
+ num_lines = int (self .kwargs ["scale" ]) * 2
290
290
if num_lines :
291
291
num_vertices = (num_lines + 1 ) * 2
292
292
else :
Original file line number Diff line number Diff line change @@ -576,7 +576,7 @@ def get_hatch(self):
576
576
def set_hatchstyles (self , hatchstyles ):
577
577
if hatchstyles is None :
578
578
hatchstyles = []
579
- self ._hatchstyles = hatchstyles
579
+ self ._hatchstyles = np . atleast_1d ( hatchstyles )
580
580
self .stale = True
581
581
582
582
def get_hatchstyles (self ):
You can’t perform that action at this time.
0 commit comments