colors
In [1]:
"""
A simple example of loading and displaying a mesh with face colors.
"""
Out[1]:
'\nA simple example of loading and displaying a mesh with face colors.\n'
In [2]:
import trimesh
In [3]:
m = trimesh.load('../models/machinist.XAML',process=False)
In [4]:
print(m.visual.kind)
face
In [5]:
m.show()
Out[5]: