Spaces:
Sleeping
Sleeping
File size: 291 Bytes
7a989c9 195b61e 7a989c9 a40e0c1 7a989c9 195b61e 7a989c9 195b61e 7a989c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import pyrender
import numpy as np
import trimesh
# Create a simple mesh
mesh = trimesh.Sphere(radius=1.0)
mesh = pyrender.Mesh.from_trimesh(mesh)
# Create a scene and add the mesh
scene = pyrender.Scene()
scene.add(mesh)
# Create a viewer
pyrender.Viewer(scene, use_raymond_lights=True)
|