vrcore  0.45
visuReal Messkern
 All Classes Files Functions Variables
BCfunctDeriv.h
1 #pragma once
2 
3 #include <opencv2/opencv.hpp>
4 
7 class BCfunctDeriv {
8 public:
9  BCfunctDeriv(void);
10  BCfunctDeriv(double first);
11  ~BCfunctDeriv(void);
12 
13  double evaluate(double var1) const;
14  static cv::Matx33d toMatx33d(BCfunctDeriv* functions, const cv::Vec3d& v);
15 
16 private:
17  // Koeffizienten
18  double first_; // 2*F_i
19 };
Definition: BCfunctDeriv.h:7