imagepy icon indicating copy to clipboard operation
imagepy copied to clipboard

FIX-..\sciwx\canvas\test.py ----- o, m = mat(self.oribox, self.conbox, csbox)

Open pengguanjun opened this issue 5 years ago • 0 comments

Bug: File "d:\SourcesCode\gitHome\imagepy\sciwx\canvas\test.py", line 152, in draw_image o, m = mat(self.oribox, self.conbox, csbox) TypeError: mat() missing 1 required positional argument: 'cros'

FIXED: cros = csbox o, m = mat(self.oribox, self.conbox, csbox, cros)

mat defined: ...sciwx\canvas\boxutil.py def mat(ori, con, cell, cros):

pengguanjun avatar Jun 06 '20 01:06 pengguanjun