41 const int WN = 25, WV = 30;
44 sSection,
"robot_radius",
m_robotRadius, WN, WV,
"Robot radius [m].");
55 for (
int i = 0; i < N; i++)
58 R * cos(i * 2 *
M_PI / (N - 1)),
R * sin(i * 2 *
M_PI / (N - 1)), 0,
59 shap_x[i], shap_y[i], shap_z[i]);
63 origin.
x(), origin.
y(), .0, shap_x[0], shap_y[0], shap_z[0]);
64 for (
int i = 1; i <= shap_x.size(); i++)
66 const int idx = i % shap_x.size();
71 origin.
x() -
R * 0.02, origin.
y(), .0, origin.
x() +
R * 0.02,
74 origin.
x(), origin.
y() -
R * 0.02, .0, origin.
x(),
75 origin.
y() +
R * 0.02, .0);
109 const double x,
const double y)
const
115 const double ox,
const double oy)
const
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())
Column vector, like Eigen::MatrixX*, but automatically initialized to zeros since construction.
void loadShapeFromConfigFile(const mrpt::config::CConfigFileBase &source, const std::string §ion)
void internal_shape_loadFromStream(mrpt::serialization::CArchive &in)
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 loadDefaultParams() override
Loads a set of default parameters; provided exclusively for the PTG-configurator tool.
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.
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.
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 internal_shape_saveToStream(mrpt::serialization::CArchive &out) const
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.
Virtual base class for "archives": classes abstracting I/O streams.
#define MRPT_LOAD_HERE_CONFIG_VAR( variableName, variableType, targetVariable, configFileObject, sectionNameStr)
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
GLsizei const GLchar ** string
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.