#include "igl_inline.h"
#include <Eigen/Core>
#include "hsv_to_rgb.cpp"
Go to the source code of this file.
|
template<typename T > |
void | igl::hsv_to_rgb (const T *hsv, T *rgb) |
| Convert RGB to HSV.
|
|
template<typename T > |
void | igl::hsv_to_rgb (const T &h, const T &s, const T &v, T &r, T &g, T &b) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|
template<typename DerivedH , typename DerivedR > |
void | igl::hsv_to_rgb (const Eigen::PlainObjectBase< DerivedH > &H, Eigen::PlainObjectBase< DerivedR > &R) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|