pythreejs
pythreejs copied to clipboard
A Jupyter - Three.js bridge
When trying to render anything in a new conda env with version `2.4.1`, I get this Javascript error icon  Code to reproduce: ```Py import pythreejs as...
To visualise the results of an animation (written using sympy.physics.mechanics) I have this cell in the Jupyter notebook: ``` start6 = time.time() times1 = [] resultat1 = [] #======================= zeitpunkte...
I have a scene where two leaf bodies have the same name (and they have different parents). ``` scene/ -- sphere/ -- child -- box/ -- child ``` I cannot...
I have a scene that I'm saving to a static html page: ``` scene = pythreejs.Scene(...) renderer = pythreejs.Renderer(scene=scene, ...) clip = pythreejs.AnimationClip(tracks=...) mixer = pythreejs.AnimationMixer(...) action = pythreejs.AnimationAction(mixer, clip,...
I runned folowing cells in [JupyterLite](https://jupyterlite.github.io/demo/lab/index.html): ```python %pip install pythreejs ``` ```python from pythreejs import * from IPython.display import display from math import pi # Reduce repo churn for examples...
I'm trying to use the Vector3 class from PyThreeJS to represent 3D vectors in my Python code, but I keep getting a TypeError when trying to create a new Vector3...
Hi, I'm trying to add the inverse bind matrices to the skeleton but I am having the following problems (btw, I'm not an expect in JS. I'm trying to build...
I am trying to created a dashed line, as in [this example](http://stemkoski.github.io/Three.js/Dashed-Lines.html). Using `LineBasicMaterial` produces a solid line as expected: ```Py x = [0, 10, 20, 30] y = [0,...
Most people are no longer fluent in jQuery, so it makes more sense to just use native DOM/JS APIs.