pythreejs
pythreejs copied to clipboard
A Jupyter - Three.js bridge
Hello, I have generated multiple meshes from simple "quad" geometries based on Geometry(vertices, faces, colors). Now I would like to "map" a dedicated text on top of each quad. That...
- for #354 This adds a checked-in environment, derived from binder, to be consumed by RTD. It's a little heavier than it needs to be, but by only specifying URLs,...
For some time, it looks like the ReadTheDocs build has been [failing](https://readthedocs.org/projects/pythreejs/builds/13093697/) with: ```bash conda env create --quiet --name latest --file docs/environment.yml Collecting package metadata: ...working... done Solving environment: ...working......
When a mesh is passed to the Picker, it is legitimate for there to be no uv specified. (and saves a lot of memory). In this case it was created...
Hi, it seems that adding a PlaneHelper freezes the threejs scene and the PlaneHelper is also not shown. Does anyone has the same problem? Best, Kris
I have tried to reproduce the following threejs example in pythreejs, but with no success yet: https://threejs.org/docs/#api/en/audio/Audio ``` import pythreejs audioLoader = pythreejs.AudioLoader() audioLoader.load("http://nicolas.thiery.name/sol.ogg") ``` ``` AttributeError: 'AudioLoader' object has...
Hello, Our project needs to use InstancedMesh, introduced here: https://github.com/mrdoob/three.js/pull/17505 (I think in r109) Would it be possible to update pythree to at least three.js 109? We want to implement...
Hi there, in the [example in this repo,](https://github.com/jupyter-widgets/pythreejs/blob/master/examples/Examples.ipynb) the demo Code includes a function call `cubeGeometry.exec_three_obj_method('computeFaceNormals')`. I and certainly many others who create geometries from faces and vertices need this...
Hello pythreejs team :wave: I found out that the getter methods, getAzimuthalAngle() and getPolarAngle(), are not available in [OrbitControls for pythreejs](https://pythreejs.readthedocs.io/en/latest/api/controls/OrbitControls_autogen.html) which are already available in [OrbitControls for Three.js](https://threejs.org/docs/#examples/en/controls/OrbitControls.getAzimuthalAngle). Was...
Hi there, I am currently working on porting FreeCAD to Jupyter Notebook ([repository](https://github.com/kryptokommunist/Jupyter_FreeCAD)). I chose `pythreejs` as the tool to render the 3D models. Since I will rely on an...