Michael Dawson-Haggerty

Results 107 comments of Michael Dawson-Haggerty

I seem to recall `camera_to_rays` was originally PR'd for something other than corresponding exactly with the viewer. That being said looking at the code it looks like `camera_to_rays` should probably...

Hey, no current work on supporting Pyglet 2 but open to PR's! I have been doing other stuff in WebGPU `wgpu-native` bindings (i.e. [`xgpu`](https://github.com/pyrym/xgpu)|[`wgpu-py`](https://github.com/pygfx/wgpu-py) +`glfw`) which is easy to install,...

This sounds good to me! Looks like the tests are failing, happy to merge once those pass.

Hey, the OBJ format has a lot of gotchas, you may want to use a different format if you need to match the input (maybe OFF or GLB?). I think...

Thanks for the PR! Looks like tests are failing, I think you want to change the check from `columns == 6 or 8` to `columns in (6, 8)`: ``` In...

Hey yeah this is a little tough with OBJ, since as far as I know there's no face-color mode that's well supported (well-supported being meshlab and maybe three.js :). If...

Thanks for the report and reproducible example! Yeah it's definitely the flat-array shenanigans on import causing this. The export looks pretty nice, but I noticed meshlab also hard-crashes on "some...

Yeah PR's super welcome for this case! I agree it would make sense to fix and unit test for the case where there is a single image that already is...

Thanks for the report! Yeah this one is confusing. I traced it down to `convex.fix_normals(multibody=False)` which flips the single face to maintain consistent winding. If you comment that out this...

It looks like that corresponds to #1543, which format are you trying to load? Can you share the model in question?