You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The binding should transparantly try to translate any python sequence and scalar to HTuple if there is a matching function.
E.g. currently it is necessary to write:
canvas = HImageArray(Images).TileImagesOffset(HTuple(OffsetRow),
HTuple(OffsetCol),
HTuple([0]*len(Images)), # row1
HTuple([0]*len(Images)), # col1
HTuple([i.Height() for i in Images]),
HTuple([i.Width() for i in Images]),
HTuple(Width),
HTuple(Height))
Requested is to get rid of all the explicit HTuple() calls.
The text was updated successfully, but these errors were encountered:
The binding should transparantly try to translate any python sequence and scalar to HTuple if there is a matching function.
E.g. currently it is necessary to write:
Requested is to get rid of all the explicit HTuple() calls.
The text was updated successfully, but these errors were encountered: