Beziercurve.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package
19  * @author
20  * @date
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 #include <cassert>
25 #include <limits>
26 
27 #include "Beziercurve.h"
28 
29 armarx::Beziercurve::Beziercurve(pointVector controlPoints, size_t degree, size_t index)
30  : m_degree(degree),
31  m_index(index),
32  m_controlPoints(controlPoints)
33 {}
34 
36  : m_degree(controlPoints.size() - 1),
37  m_index(0),
38  m_controlPoints(controlPoints)
39 {}
40 
41 Eigen::VectorXf armarx::Beziercurve::evaluate(float t) const
42 {
43  assert((t >= 0) && (t <= 1.0 + std::numeric_limits<float>::epsilon()));
44 
45  if (m_degree == 0)
46  {
47  return m_controlPoints.at(m_index);
48  }
49 
50  Beziercurve left {m_controlPoints, m_degree - 1, m_index};
51  Beziercurve right {m_controlPoints, m_degree - 1, m_index + 1};
52 
53  assert((m_degree > 0) && (m_degree < m_controlPoints.size()));
54  assert(m_index < m_controlPoints.size() - m_degree);
55 
56  return (1 - t) * left.evaluate(t) + t * right.evaluate(t);
57 }
armarx::Beziercurve::Beziercurve
Beziercurve(pointVector controlPoints)
Definition: Beziercurve.cpp:35
index
uint8_t index
Definition: EtherCATFrame.h:59
armarx::Beziercurve::evaluate
Eigen::VectorXf evaluate(float t) const
Definition: Beziercurve.cpp:41
armarx::pointVector
std::vector< Eigen::VectorXf > pointVector
Definition: Beziercurve.h:33
Beziercurve.h
armarx::Beziercurve
Definition: Beziercurve.h:35