LinearizeAngularTrajectory.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2012-2016, High Performance Humanoid Technologies (H2T),
5  * Karlsruhe Institute of Technology (KIT), all rights reserved.
6  *
7  * ArmarX is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  * ArmarX is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <http://www.gnu.org/licenses/>.
18  *
19  * @author ()
20  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
21  * GNU General Public License
22  */
23 
25 #include "MathUtils.h"
26 
27 namespace armarx::math
28 {
30  : linearValue(initialLinearValue)
31  {
32  }
33 
35  {
36  linearValue = linearValue + MathUtils::angleModPI(angle - linearValue);
37  return linearValue;
38  }
39 
41  {
42  return linearValue;
43  }
44 
45  std::vector<float> LinearizeAngularTrajectory::Linearize(const std::vector<float>& data)
46  {
47  std::vector<float> result;
48  result.reserve(data.size());
49  if (data.size() == 0)
50  {
51  return result;
52  }
54  for (float v : data)
55  {
56  result.push_back(lat.update(v));
57  }
58  return result;
59  }
60 
62  {
63  if (data.size() == 0)
64  {
65  return;
66  }
68  for (size_t i = 0; i < data.size(); i++)
69  {
70  data.at(i) = lat.update(data.at(i));
71  }
72  }
73 
74  std::vector<float> LinearizeAngularTrajectory::Angularize(const std::vector<float>& data, float center)
75  {
76  std::vector<float> result;
77  result.reserve(data.size());
78  for (float v : data)
79  {
80  result.push_back(MathUtils::angleModX(v, center));
81  }
82  return result;
83  }
84 
85  void LinearizeAngularTrajectory::AngularizeRef(std::vector<float>& data, float center)
86  {
87  for (size_t i = 0; i < data.size(); i++)
88  {
89  data.at(i) = MathUtils::angleModX(data.at(i), center);
90  }
91 
92  }
93 }
MathUtils.h
LinearizeAngularTrajectory.h
armarx::math::LinearizeAngularTrajectory::Angularize
static std::vector< float > Angularize(const std::vector< float > &data, float center=0)
Definition: LinearizeAngularTrajectory.cpp:74
armarx::math::LinearizeAngularTrajectory::update
float update(float angle)
Definition: LinearizeAngularTrajectory.cpp:34
armarx::math::MathUtils::angleModX
static float angleModX(float value, float center)
Definition: MathUtils.h:145
armarx::math::LinearizeAngularTrajectory::LinearizeAngularTrajectory
LinearizeAngularTrajectory(float initialLinearValue)
Definition: LinearizeAngularTrajectory.cpp:29
data
uint8_t data[1]
Definition: EtherCATFrame.h:68
armarx::math::LinearizeAngularTrajectory
Definition: LinearizeAngularTrajectory.h:34
armarx::math::MathUtils::angleModPI
static float angleModPI(float value)
Definition: MathUtils.h:140
armarx::ctrlutil::v
double v(double t, double v0, double a0, double j)
Definition: CtrlUtil.h:39
armarx::math::LinearizeAngularTrajectory::LinearizeRef
static void LinearizeRef(std::vector< float > &data)
Definition: LinearizeAngularTrajectory.cpp:61
armarx::math
Definition: LinearizeAngularTrajectory.cpp:27
armarx::math::LinearizeAngularTrajectory::getLinearValue
float getLinearValue()
Definition: LinearizeAngularTrajectory.cpp:40
angle
double angle(const Point &a, const Point &b, const Point &c)
Definition: point.hpp:100
armarx::math::LinearizeAngularTrajectory::AngularizeRef
static void AngularizeRef(std::vector< float > &data, float center=0)
Definition: LinearizeAngularTrajectory.cpp:85
armarx::math::LinearizeAngularTrajectory::Linearize
static std::vector< float > Linearize(const std::vector< float > &data)
Definition: LinearizeAngularTrajectory.cpp:45