Skip to content
Snippets Groups Projects
Commit 6470cdb7 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fix minor issues in doc comments

parent 377fafe2
No related branches found
No related tags found
No related merge requests found
......@@ -55,10 +55,10 @@ namespace GraspStudio
* \param object The object.
* \param eef The end effector.
* \param graspPreshape An optional preshape that can be used in order to "open" the eef.
* \param maxRandDist
* \param maxRetreatDist
* If >0, the resulting apporach pose is randomly moved in the approach direction
* (away from the object) in order to create different distances to the object.
* \param usefaceAreaDistribution
* \param useFaceAreaDistribution
* If true, the probability of a face being selected is proportional to its area.
* If false, all faces are selected with equal probability.
*/
......
......@@ -62,7 +62,8 @@ namespace GraspStudio
/*!
Creates new grasps.
\param nrGrasps The number of grasps to be planned.
\param timeOutMS The time out in milliseconds. Planning is stopped when this time is exceeded. Disabled when zero.
\param timeOutDuration The time out in milliseconds. Planning is stopped when this time is exceeded. Disabled when zero.
\param obstacles
\return Number of generated grasps.
*/
int plan(int nrGrasps, int timeOutDuration = 0, VirtualRobot::SceneObjectSetPtr obstacles = {}) override;
......
......@@ -56,6 +56,7 @@ namespace GraspStudio
Creates new grasps.
\param nrGrasps The number of grasps to be planned.
\param timeOutMS The time out in milliseconds. Planning is stopped when this time is exceeded. Disabled when zero.
\param obstacles
\return Number of planned grasps.
*/
virtual int plan(int nrGrasps, int timeOutMS = 0, VirtualRobot::SceneObjectSetPtr obstacles = {}) = 0;
......
......@@ -46,6 +46,7 @@ namespace Saba
\param cspace An initialized cspace object.
\param modeA Specify the RRT method that should be used to build the first tree
\param modeB Specify the RRT method that should be used to build the second tree
\param samplingSize
*/
BiRrt(CSpacePtr cspace, RrtMethod modeA = eConnect, RrtMethod modeB = eConnect, float samplingSize = -1);
~BiRrt() override;
......
......@@ -68,6 +68,7 @@ namespace Saba
\param cspace A cspace, defining the used joints (the dimension/DoF) and the collision detection setup.
\param mode Specify the RRT method that should be used
\param probabilityExtendToGoal Specify how often the goal node should be used instead of a random config (value must be between 0 and 1)
\param samplingSize
*/
Rrt(CSpacePtr cspace, RrtMethod mode = eConnect, float probabilityExtendToGoal = 0.1f, float samplingSize = -1);
~Rrt() override;
......
......@@ -650,8 +650,8 @@ namespace VirtualRobot
double VIRTUAL_ROBOT_IMPORT_EXPORT getDamping(const Eigen::MatrixXf &matrix);
/*! @brief Calculates the damped least square inverse by J^T * (JJ^T + k^2 I)^{-1}
* @jacobian Jacobian J
* @squaredDampingFactor Damping factor k^2
* @param jacobian Jacobian J
* @param squaredDampingFactor Damping factor k^2
*/
template <typename T>
Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic> VIRTUAL_ROBOT_IMPORT_EXPORT getDampedLeastSquareInverse(const Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic> &jacobian, double squaredDampingFactor = 0.01f) {
......
......@@ -31,7 +31,8 @@ namespace VirtualRobot
{
class VIRTUAL_ROBOT_IMPORT_EXPORT NaturalPosture : public WorkspaceRepresentation, public std::enable_shared_from_this<NaturalPosture>
class VIRTUAL_ROBOT_IMPORT_EXPORT NaturalPosture :
public WorkspaceRepresentation, public std::enable_shared_from_this<NaturalPosture>
{
public:
friend class CoinVisualizationFactory;
......
......@@ -34,7 +34,7 @@ namespace VirtualRobot
* A 2D grid which represents a quality distribution (e.g. the reachability) at 2D positions w.r.t. one or multiple grasp(s).
* Internally the inverse workspace data (@see WorkspaceRepresentation), which encodes the
* transformation between robot's base and grasping position, is used.
* This data is useful to quickly sample positions from where the probability that a grasp is reachable is high (see \func getRandomPos).
* This data is useful to quickly sample positions from where the probability that a grasp is reachable is high (see getRandomPos()).
*/
class VIRTUAL_ROBOT_IMPORT_EXPORT WorkspaceGrid
{
......
......@@ -273,7 +273,7 @@ namespace VirtualRobot
/*!
Estimate a parameter setup for the given RNS by randomly set configurations and check for achieved workspace extends. The results are slightly scaled.
\param ndoeSet
\param nodeSet
\param steps How many loops should be performed to estimate the result. Chose a value >= 1000.
\param storeMinBounds Workspace extend from min
\param storeMaxBounds Workspace extend to max
......@@ -321,6 +321,7 @@ namespace VirtualRobot
* \brief createCut Create a cut at a specific height (assuming z is upwards).
* \param heightPercent Value in [0,1]
* \param cellSize The discretization step size of the result
* \param sumAngles¸
* \return
*/
WorkspaceCut2DPtr createCut(float heightPercent, float cellSize, bool sumAngles) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment