Kushal Kolar
Kushal Kolar
Hi, this is something I may be interested in helping to develop and it's stirring a bit of interest in the local neuroscience community over here! The compatibility with the...
Something like pyqtgraph would probably be great, with flexible callbacks. The way that `pygfx` can already access variables in its "animate loop" in a non-blocking manner in notebooks is really...
Thanks for the ideas! Yup I agree that an independent high level API that just uses pygfx is probably a cleaner solution. I started playing around with making a high...
Started an experimental package for a high level API if you're interested in checking it out, open to ideas! It's in very very early stages. Usage examples: https://github.com/kushalkolar/fastplotlib/tree/master/examples
Nope this doesn't work (at least for Image objects), for example modifying the `geometry_image.py` example throws an exception: ```python """ Show an image. """ import imageio from wgpu.gui.auto import WgpuCanvas,...
Looks like it's supposed to create a 4D vector from the 3D one in `linalg.utils.transform` but it's not actually happening for some reason ```python def transform(vectors, matrix, directions=False): """Applies an...
What do you think about also finding the bounding box that accounts for all `WorldObject` items in a scene?
Any ideas on how a `show_object` function could be implemented for the `Controller` class? I could try to implement it. In `fastplotlib` I implemented something like this to show everything...
@berendkleinhaneveld Thanks! I have to test it a bit more. In notebooks via `jupyter_rfb`, `Controller.show_object()` only works after the canvas has already been displayed, I want to test it a...
@berendkleinhaneveld I can confirm that this works well, thanks for the implementation! Should I open an issue to keep track of the todo implementation for `OrbitOrthoController`?