Fix Pattern.get_bounds()
This commit is contained in:
parent
e057f6e4a2
commit
e5f28a7a92
1 changed files with 1 additions and 1 deletions
|
|
@ -393,7 +393,7 @@ class Pattern:
|
|||
return None
|
||||
|
||||
min_bounds = numpy.array((+inf, +inf))
|
||||
max_bounds = numpy.array((+inf, +inf))
|
||||
max_bounds = numpy.array((-inf, -inf))
|
||||
for entry in entries:
|
||||
bounds = entry.get_bounds()
|
||||
if bounds is None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue