From 6b77e116a8c8a4bdef9564bf1b74db18184ff16f Mon Sep 17 00:00:00 2001 From: Christopher Lackner Date: Tue, 10 Jun 2025 15:13:05 +0200 Subject: [PATCH] return alpha value of facedescriptor color --- libsrc/meshing/python_mesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/meshing/python_mesh.cpp b/libsrc/meshing/python_mesh.cpp index e0e73858..54c32f49 100644 --- a/libsrc/meshing/python_mesh.cpp +++ b/libsrc/meshing/python_mesh.cpp @@ -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) {