48 lines
864 B
C++
48 lines
864 B
C++
//m.def("parula", []
|
|
//(
|
|
// const double f,
|
|
// T * rgb
|
|
//)
|
|
//{
|
|
// return igl::parula(f, rgb);
|
|
//}, __doc_igl_parula,
|
|
//py::arg("f"), py::arg("rgb"));
|
|
|
|
m.def("parula", []
|
|
(
|
|
const double f,
|
|
double & r,
|
|
double & g,
|
|
double & b
|
|
)
|
|
{
|
|
return igl::parula(f, r, g, b);
|
|
}, __doc_igl_parula,
|
|
py::arg("f"), py::arg("r"), py::arg("g"), py::arg("b"));
|
|
|
|
m.def("parula", []
|
|
(
|
|
const Eigen::MatrixXd& Z,
|
|
const bool normalize,
|
|
Eigen::MatrixXd& C
|
|
)
|
|
{
|
|
assert_is_VectorX("Z",Z);
|
|
return igl::parula(Z, normalize, C);
|
|
}, __doc_igl_parula,
|
|
py::arg("Z"), py::arg("normalize"), py::arg("C"));
|
|
|
|
m.def("parula", []
|
|
(
|
|
const Eigen::MatrixXd& Z,
|
|
const double min_Z,
|
|
const double max_Z,
|
|
Eigen::MatrixXd& C
|
|
)
|
|
{
|
|
assert_is_VectorX("Z",Z);
|
|
return igl::parula(Z, min_Z, max_Z, C);
|
|
}, __doc_igl_parula,
|
|
py::arg("Z"), py::arg("min_Z"), py::arg("max_Z"), py::arg("C"));
|
|
|