JPLost

Results 6 comments of JPLost

Here is example for tkinter in Python. Idea is for quick mesh manipulation/prototyping using F3D viewer with its builtin properties. [LanPTR3D.zip](https://github.com/f3d-app/f3d/files/15446737/LanPTR3D.zip)

I've been looking for simple viewer that can have it's own built gui. Currently Open3D has the closest approach. But probably I would need primarily check boxes, sliders, rgb value...

Wondering if it can be opened as separate viewport window with pyimgui. Or should it be run as separate process?

Yeah, my bad. If I separate the class and main to different files, of course it would need class declaration in header file.

So I can't define load_mesh with keyword argument for Trimesh? PyCharm seems to still think this is a scene. ```py _file = fd.File path = _file.Open(_file) mesh = trimesh.load_mesh(path, "obj")...