You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ovvizColorGradient.h 458B

12345678910111213
  1. #pragma once
  2. #include "ovviz_base.h"
  3. namespace OpenViBE {
  4. namespace VisualizationToolkit {
  5. namespace ColorGradient {
  6. OVVIZ_API bool parse(CMatrix& colorGradient, const CString& string);
  7. OVVIZ_API bool format(CString& string, const CMatrix& colorGradient);
  8. OVVIZ_API bool interpolate(CMatrix& interpolatedColorGradient, const CMatrix& colorGradient, size_t steps);
  9. } // namespace ColorGradient
  10. } // namespace VisualizationToolkit
  11. } // namespace OpenViBE