MDStressLab++
Loading...
Searching...
No Matches
Constant.h
Go to the documentation of this file.
1/*
2 * Constant.h
3 *
4 * Created on: Jan 9, 2020
5 * Author: Nikhil
6 */
7
8#ifndef CONSTANT_H_
9#define CONSTANT_H_
10
11#include "typedef.h"
12
13class Constant {
14public:
15 Constant();
16 virtual ~Constant();
17 double operator()(const double& t) const;
18 double integrate(const Vector3d& vec1_pull_seg, const Vector3d& vec2_pull_seg) const;
19};
20
21#endif /* CONSTANT_H_ */
virtual ~Constant()
Definition Constant.cpp:13
double integrate(const Vector3d &vec1_pull_seg, const Vector3d &vec2_pull_seg) const
Definition Constant.cpp:32
double operator()(const double &t) const
Definition Constant.cpp:15
Eigen::Matrix< double, 1, DIM, Eigen::RowMajor > Vector3d
Definition typedef.h:60