There is no example in OpenMesh documentation for coloring faces. Which function should I use to color fh0 to green? (I tried mesh.set_color but could not succeed. You can see my attempt on second part of code)
import openmesh as om
import numpy as np
mesh = om.TriMesh()
# add a a couple of vertices to the mesh
vh0 = mesh.add_vertex([0, 1, 0])
vh1 = mesh.add_vertex([1, 0, 0])
vh2 = mesh.add_vertex([2, 1, 0])
vh3 = mesh.add_vertex([0,-1, 0])
vh4 = mesh.add_vertex([2,-1, 0])
# add a couple of faces to the mesh
fh0 = mesh.add_face(vh0, vh1, vh2)
fh1 = mesh.add_face(vh1, vh3, vh4)
fh2 = mesh.add_face(vh0, vh3, vh1)
# add another face to the mesh, this time using a list
vh_list = [vh2, vh1, vh4]
fh3 = mesh.add_face(vh_list)
# 0 ==== 2
# |\ 0 /|
# | \ / |
# |2 1 3|
# | / \ |
# |/ 1 \|
# 3 ==== 4
for face in mesh.faces():
mesh.set_color(face, [0.67578125, 0.296875, 0.3515625])
om.write_mesh('test.obj', mesh)
but this gives me
IndexError: index 3 is out of bounds for axis 0 with size 3
How can I add color to faces in OpenMesh?
There are several issues:
mesh.request_face_colors()is required for theTriMeshobject to support storing face colors.mesh.set_colorexpects an alpha channel, so your color is actually[0.67578125, 0.296875, 0.3515625, 1.]write_meshrequiresface_color=Trueargument.Full code:
Console output (color attribute was successfully added to the mesh):
Content of test.obj:
Content of test.mat (this file specifies what "mat0" in the test.obj file means):
Content of test.ply (everything in a single file):