OceanDirect  1.31.0
OceanDirect C++/C API
OceanProcess.h
1 #pragma once
2 #include <vector>
3 
4 namespace oceandirect {
5  namespace api {
6  class OceanProcess {
7  public:
13  static double EvaluatePolynomial(const double x, const std::vector<double>& polyCoeff);
14 
15  //ColorObject PerformColorCalculations(int *errorCode, std::vector<double> irradiance_data, std::vector<double> _waveln_data);
16 
22  static int FindNearest(const std::vector<double>& xaxis, double wl);
23  };
24  }
25 }
Definition: OceanProcess.h:6
static int FindNearest(const std::vector< double > &xaxis, double wl)
static double EvaluatePolynomial(const double x, const std::vector< double > &polyCoeff)
This is an interface to OceanDirect that allows the user to connect to devices over USB and other bus...
Definition: DeviceFactory.h:38