51         const double BADNUM = std::numeric_limits<double>::max();
    53         for (
unsigned int nPt = 0; ; ++nPt)
    58                 const double ptx = cfg.
read_double(sSection, sPtx, BADNUM, 
false);
    59                 const double pty = cfg.
read_double(sSection, sPty, BADNUM, 
false);
    60                 if (ptx == BADNUM && pty == BADNUM) 
break;
    61                 ASSERTMSG_((ptx != BADNUM && pty != BADNUM), 
"Error: mismatch between number of pts in {x,y} defining robot shape");
    77         const int WN = 25, WV = 30;
    84                 cfg.
write(sSection, sPtx, 
m_robotShape[i].
x, WN, WV, 
"Robot polygonal shape, `x` [m].");
    85                 cfg.
write(sSection, sPty, 
m_robotShape[i].
y, WN, WV, 
"Robot polygonal shape, `y` [m].");
    98                 for (
int i = 0; i<N; i++) {
   101                                 shap_x[i], shap_y[i], shap_z[i]);
   104                 gl_shape.
appendLine(shap_x[0], shap_y[0], shap_z[0], shap_x[1], shap_y[1], shap_z[1]);
   105                 for (
int i = 0; i <= shap_x.size(); i++) {
   106                         const int idx = i % shap_x.size();
 void internal_shape_saveToStream(mrpt::utils::CStream &out) const
 
virtual ~CPTG_RobotShape_Polygonal()
 
void appendLineStrip(float x, float y, float z)
Appends a line whose starting point is the end point of the last line (similar to OpenGL's GL_LINE_ST...
 
Column vector, like Eigen::MatrixX*, but automatically initialized to zeros since construction...
 
virtual double evalClearanceToRobotShape(const double ox, const double oy) const MRPT_OVERRIDE
Evals the clearance from an obstacle (ox,oy) in coordinates relative to the robot center...
 
A wrapper of a TPolygon2D class, implementing CSerializable. 
 
void composePoint(double lx, double ly, double &gx, double &gy) const
An alternative, slightly more efficient way of doing  with G and L being 2D points and P this 2D pose...
 
bool isPointInsideRobotShape(const double x, const double y) const MRPT_OVERRIDE
Returns true if the point lies within the robot shape. 
 
void loadShapeFromConfigFile(const mrpt::utils::CConfigFileBase &source, const std::string §ion)
 
This class allows loading and storing values and vectors of different types from a configuration text...
 
This base class is used to provide a unified interface to files,memory buffers,..Please see the deriv...
 
void appendLine(const mrpt::math::TSegment3D &sgm)
Appends a line to the set. 
 
virtual void internal_processNewRobotShape()=0
Will be called whenever the robot shape is set / updated. 
 
void internal_shape_loadFromStream(mrpt::utils::CStream &in)
 
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations. 
 
void add_robotShape_to_setOfLines(mrpt::opengl::CSetOfLines &gl_shape, const mrpt::poses::CPose2D &origin=mrpt::poses::CPose2D()) const MRPT_OVERRIDE
Auxiliary function for rendering. 
 
std::string BASE_IMPEXP format(const char *fmt,...) MRPT_printf_format_check(1
A std::string version of C sprintf. 
 
GLsizei const GLchar ** string
 
CPTG_RobotShape_Polygonal()
 
void saveToConfigFile(mrpt::utils::CConfigFileBase &cfg, const std::string &sSection) const MRPT_OVERRIDE
This method saves the options to a ".ini"-like file or memory-stored string list. ...
 
bool contains(const TPoint2D &point) const
Check whether a point is inside (or within geometryEpsilon of a polygon edge). This works for concave...
 
void setRobotShape(const mrpt::math::CPolygon &robotShape)
Robot shape must be set before initialization, either from ctor params or via this method...
 
#define ASSERT_ABOVEEQ_(__A, __B)
 
double getMaxRobotRadius() const MRPT_OVERRIDE
Returns an approximation of the robot radius. 
 
void write(const std::string §ion, const std::string &name, const data_t &value, const int name_padding_width=-1, const int value_padding_width=-1, const std::string &comment=std::string())
 
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
 
double read_double(const std::string §ion, const std::string &name, double defaultValue, bool failIfNotFound=false) const
 
T hypot_fast(const T x, const T y)
Faster version of std::hypot(), to use when overflow is not an issue and we prefer fast code...
 
A set of independent lines (or segments), one line with its own start and end positions (X...
 
void loadDefaultParams() MRPT_OVERRIDE
Loads a set of default parameters; provided exclusively for the PTG-configurator tool. 
 
void AddVertex(double x, double y)
Add a new vertex to polygon. 
 
#define ASSERTMSG_(f, __ERROR_MSG)
 
void keep_max(T &var, const K test_val)
If the second argument is above the first one, set the first argument to this higher value...
 
mrpt::math::CPolygon m_robotShape