Loading...
Searching...
No Matches
registeration.hpp
Go to the documentation of this file.
1
16#ifndef CURVES_REGISTERATION_H
17#define CURVES_REGISTERATION_H
18#include <Eigen/Dense>
19#include <vector>
20
21#include "ndcurves/fwd.h"
22
29namespace ndcurves {
30namespace serialization {
31
32template <class Archive>
33void register_types(Archive& ar, const unsigned int version) {
34 // register derived class
37 ar.template register_type<bezier_t>();
40
46
50
51 if (version >= 1) {
56#ifdef CURVES_WITH_PINOCCHIO_SUPPORT
58#endif
59 }
60}
61
62} // namespace serialization
63} // namespace ndcurves
64
65#endif // CURVES_REGISTERATION_H
forward declaration of all curves class
void register_types(Archive &ar, const unsigned int version)
Definition registeration.hpp:33
Definition bernstein.h:20
bool isApprox(const T a, const T b, const T eps=1e-6)
Definition curve_abc.h:25