Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include <towr/variables/spline.h>
00031
00032 #include <numeric>
00033
00034 namespace towr {
00035
00036 Spline::Spline(const VecTimes& poly_durations, int n_dim)
00037 {
00038 uint n_polys = poly_durations.size();
00039
00040 cubic_polys_.assign(n_polys, CubicHermitePolynomial(n_dim));
00041 for (int i=0; i<cubic_polys_.size(); ++i) {
00042 cubic_polys_.at(i).SetDuration(poly_durations.at(i));
00043 }
00044
00045 UpdatePolynomialCoeff();
00046 }
00047
00048 int
00049 Spline::GetSegmentID(double t_global, const VecTimes& durations)
00050 {
00051 double eps = 1e-10;
00052 assert(t_global >= 0.0);
00053
00054 double t = 0;
00055 int i=0;
00056 for (double d: durations) {
00057 t += d;
00058
00059 if (t >= t_global-eps)
00060 return i;
00061
00062 i++;
00063 }
00064
00065 assert(false);
00066 }
00067
00068 std::pair<int,double>
00069 Spline::GetLocalTime (double t_global, const VecTimes& durations) const
00070 {
00071 int id = GetSegmentID(t_global, durations);
00072
00073 double t_local = t_global;
00074 for (int i=0; i<id; i++)
00075 t_local -= durations.at(i);
00076
00077 return std::make_pair(id, t_local);
00078 }
00079
00080 const State
00081 Spline::GetPoint(double t_global) const
00082 {
00083 int id; double t_local;
00084 std::tie(id, t_local) = GetLocalTime(t_global, GetPolyDurations());
00085
00086 return GetPoint(id, t_local);
00087 }
00088
00089 const State
00090 Spline::GetPoint(int poly_id, double t_local) const
00091 {
00092 return cubic_polys_.at(poly_id).GetPoint(t_local);
00093 }
00094
00095 void
00096 Spline::UpdatePolynomialCoeff()
00097 {
00098 for (auto& p : cubic_polys_)
00099 p.UpdateCoeff();
00100 }
00101
00102 int
00103 Spline::GetPolynomialCount () const
00104 {
00105 return cubic_polys_.size();
00106 }
00107
00108 Spline::VecTimes
00109 Spline::GetPolyDurations() const
00110 {
00111 VecTimes poly_durations;
00112 for (const auto& p : cubic_polys_)
00113 poly_durations.push_back(p.GetDuration());
00114
00115 return poly_durations;
00116 }
00117
00118 double
00119 Spline::GetTotalTime() const
00120 {
00121 auto v = GetPolyDurations();
00122 return std::accumulate(v.begin(), v.end(), 0.0);
00123 }
00124
00125 }
00126