Tomas Van den Hauwe

Results 7 issues of Tomas Van den Hauwe

#### ALL software version info * param 1.10.1 * panel 0.11.3 * python 3.7.10 #### Description of expected behavior and the observed behavior I'm trying to use `@pm.depends(pn.state.param.busy, watch=True)` on...

type-bug

#### Is your feature request related to a problem? Please describe. I'm trying to use composition of 2 parameterized classes in which the top-level class has methods that depend on...

I have a 2D numpy array with dtype = np.uint16. If I write it to a PNG file using `iio.imwrite(outpath, img)`, then the resulting image has a bit depth of...

**Description** ```python import numpy as np from vedo import build_lut, Lines, Plotter, Points colors = [ "black", "lightgreen", "orange", "yellow", "green", "lightblue", "pink", "red", "cyan", "yellow", ] assert len(colors) ==...

bug

EDIT: originally this was a feature request to add [weak reference support](https://docs.python.org/3.10/extending/newtypes.html#weak-reference-support) to the LowLevelView type. After discussion it seems like adding support for a `__dict__` is a better solution....

**Describe the bug** I have several nurbs curves and they all compare equal to each other, which they shouldn't. The issue seems to be [here](https://github.com/orbingol/NURBS-Python/blob/5.x/geomdl/abstract.py#L367), where `self._precision` is 18 and...

bug

trimesh version 4.1.4 ```python # Face 2866 contains vertices 1795, 387 and 1792. face = 2866 vertices_in_face = mesh.faces[face, :] # TrackedArray([1795, 387, 1792]) mask = np.any(mesh.face_adjacency == face, axis=1)...