40 const int WN = 25, WV = 30;
43 sSection,
"robot_radius",
m_robotRadius, WN, WV,
"Robot radius [m].");
54 for (
int i = 0; i < N; i++)
57 R * cos(i * 2 *
M_PI / (N - 1)),
R * sin(i * 2 *
M_PI / (N - 1)), 0,
58 shap_x[i], shap_y[i], shap_z[i]);
62 origin.
x(), origin.
y(), .0, shap_x[0], shap_y[0], shap_z[0]);
63 for (
int i = 1; i <= shap_x.size(); i++)
65 const int idx = i % shap_x.size();
70 origin.
x() -
R * 0.02, origin.
y(), .0, origin.
x() +
R * 0.02,
73 origin.
x(), origin.
y() -
R * 0.02, .0, origin.
x(),
74 origin.
y() +
R * 0.02, .0);
108 const double x,
const double y)
const
114 const double ox,
const double oy)
const
#define MRPT_LOAD_HERE_CONFIG_VAR( variableName, variableType, targetVariable, configFileObject, sectionNameStr)
Column vector, like Eigen::MatrixX*, but automatically initialized to zeros since construction.
virtual double evalClearanceToRobotShape(const double ox, const double oy) const override
Evals the clearance from an obstacle (ox,oy) in coordinates relative to the robot center.
CPTG_RobotShape_Circular()
void loadShapeFromConfigFile(const mrpt::utils::CConfigFileBase &source, const std::string §ion)
void loadDefaultParams() override
Loads a set of default parameters; provided exclusively for the PTG-configurator tool.
void internal_shape_loadFromStream(mrpt::utils::CStream &in)
void add_robotShape_to_setOfLines(mrpt::opengl::CSetOfLines &gl_shape, const mrpt::poses::CPose2D &origin=mrpt::poses::CPose2D()) const override
Auxiliary function for rendering.
virtual void internal_processNewRobotShape()=0
Will be called whenever the robot shape is set / updated.
double getMaxRobotRadius() const override
Returns an approximation of the robot radius.
void internal_shape_saveToStream(mrpt::utils::CStream &out) const
void saveToConfigFile(mrpt::utils::CConfigFileBase &cfg, const std::string &sSection) const override
This method saves the options to a ".ini"-like file or memory-stored string list.
bool isPointInsideRobotShape(const double x, const double y) const override
Returns true if the point lies within the robot shape.
virtual ~CPTG_RobotShape_Circular()
void setRobotShapeRadius(const double robot_radius)
Robot shape must be set before initialization, either from ctor params or via this method.
A set of independent lines (or segments), one line with its own start and end positions (X,...
void appendLine(const mrpt::math::TSegment3D &sgm)
Appends a line to the set.
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...
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle.
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...
double x() const
Common members of all points & poses classes.
This class allows loading and storing values and vectors of different types from a configuration text...
void write(const std::string §ion, const std::string &name, enum_t value, const int name_padding_width=-1, const int value_padding_width=-1, const std::string &comment=std::string())
This base class is used to provide a unified interface to files,memory buffers,..Please see the deriv...
GLsizei const GLchar ** string
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
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.