return alpha value of facedescriptor color

This commit is contained in:
Christopher Lackner
2025-06-10 15:13:05 +02:00
parent 4bfc36a2dc
commit 6b77e116a8

View File

@@ -668,7 +668,7 @@ DLL_HEADER void ExportNetgenMeshing(py::module &m)
[](const FaceDescriptor& self)
{
auto sc = self.SurfColour();
return py::make_tuple(sc[0], sc[1], sc[2]);
return py::make_tuple(sc[0], sc[1], sc[2], sc[3]);
},
[](FaceDescriptor& self, py::tuple col)
{