(string, *, dropshadow_radius: int=None, **kwargs)
| 34 | #---------------------------------------------------------------------------- |
| 35 | |
| 36 | def get_array(string, *, dropshadow_radius: int=None, **kwargs): |
| 37 | if dropshadow_radius is not None: |
| 38 | offset_x = int(np.ceil(dropshadow_radius*2/3)) |
| 39 | offset_y = int(np.ceil(dropshadow_radius*2/3)) |
| 40 | return _get_array_priv(string, dropshadow_radius=dropshadow_radius, offset_x=offset_x, offset_y=offset_y, **kwargs) |
| 41 | else: |
| 42 | return _get_array_priv(string, **kwargs) |
| 43 | |
| 44 | @functools.lru_cache(maxsize=10000) |
| 45 | def _get_array_priv( |
no test coverage detected