// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2017 Sebastian Koch and Daniele Panozzo // // This Source Code Form is subject to the terms of the Mozilla Public License // v. 2.0. If a copy of the MPL was not distributed with this file, You can // obtain one at http://mozilla.org/MPL/2.0/. m.def("writePNG", [] ( const Eigen::Matrix & R, const Eigen::Matrix & G, const Eigen::Matrix & B, const Eigen::Matrix & A, const std::string png_file ) { return igl::png::writePNG(R, G, B, A, png_file); }, __doc_igl_png_writePNG, py::arg("R"), py::arg("G"), py::arg("B"), py::arg("A"), py::arg("png_file"));