MRPT  1.9.9
CPTG_DiffDrive_CCS.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2018, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 #pragma once
10 
12 
13 namespace mrpt::nav
14 {
15 /** A PTG for optimal paths of type "C|C,S" (as named in PTG papers).
16  * - **Compatible kinematics**: differential-driven / Ackermann steering
17  * - **Compatible robot shape**: Arbitrary 2D polygon
18  * - **PTG parameters**: Use the app `ptg-configurator`
19  *
20  * See also "Obstacle Distance for Car-Like Robots", IEEE Trans. Rob. And
21  * Autom, 1999.
22  * \note [Before MRPT 1.5.0 this was named CPTG3]
23  * \ingroup nav_tpspace
24  */
26 {
28  public:
29  CPTG_DiffDrive_CCS() : R(0), K(0) {}
31  const mrpt::config::CConfigFileBase& cfg, const std::string& sSection)
32  {
33  loadFromConfigFile(cfg, sSection);
34  }
35  virtual void loadFromConfigFile(
37  const std::string& sSection) override;
38  virtual void saveToConfigFile(
40  const std::string& sSection) const override;
41 
42  std::string getDescription() const override;
43  bool PTG_IsIntoDomain(double x, double y) const override;
45  float alpha, float t, float x, float y, float phi, float& v,
46  float& w) const override;
47  void loadDefaultParams() override;
48 
49  protected:
50  double R, K;
51 };
52 }
53 
GLclampf GLclampf GLclampf alpha
Definition: glext.h:3525
GLdouble GLdouble t
Definition: glext.h:3689
void loadDefaultParams() override
Loads a set of default parameters; provided exclusively for the PTG-configurator tool.
GLubyte GLubyte GLubyte GLubyte w
Definition: glext.h:4178
bool PTG_IsIntoDomain(double x, double y) const override
Returns the same than inverseMap_WS2TP() but without any additional cost.
This class allows loading and storing values and vectors of different types from a configuration text...
std::string getDescription() const override
Gets a short textual description of the PTG and its parameters.
virtual void loadFromConfigFile(const mrpt::config::CConfigFileBase &cfg, const std::string &sSection) override
Possible values in "params" (those in CParameterizedTrajectoryGenerator, which is called internally...
GLsizei const GLchar ** string
Definition: glext.h:4101
const GLdouble * v
Definition: glext.h:3678
#define DEFINE_SERIALIZABLE(class_name)
This declaration must be inserted in all CSerializable classes definition, within the class declarati...
virtual void saveToConfigFile(mrpt::config::CConfigFileBase &cfg, const std::string &sSection) const override
This method saves the options to a ".ini"-like file or memory-stored string list. ...
Base class for all PTGs suitable to non-holonomic, differentially-driven (or Ackermann) vehicles base...
GLenum GLint GLint y
Definition: glext.h:3538
A PTG for optimal paths of type "C|C,S" (as named in PTG papers).
GLenum GLint x
Definition: glext.h:3538
void ptgDiffDriveSteeringFunction(float alpha, float t, float x, float y, float phi, float &v, float &w) const override
The main method to be implemented in derived classes: it defines the differential-driven differential...
CPTG_DiffDrive_CCS(const mrpt::config::CConfigFileBase &cfg, const std::string &sSection)



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 7d5e6d718 Fri Aug 24 01:51:28 2018 +0200 at lun nov 2 08:35:50 CET 2020