Skip to content

Commit

Permalink
PR Fixup
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Brawner <[email protected]>
  • Loading branch information
brawner committed Dec 29, 2020
1 parent 5eb55d5 commit 7e95873
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/sdf/Ellipsoid.hh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ namespace sdf
/// an error code and message. An empty vector indicates no error.
public: Errors Load(ElementPtr _sdf);

/// \brief Get the ellipsoid's radius in meters.
/// \brief Get the ellipsoid's radii in meters.
/// \return The radius of the ellipsoid in meters.
public: ignition::math::Vector3d Radii() const;

Expand Down
4 changes: 2 additions & 2 deletions include/sdf/Geometry.hh
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ namespace sdf

/// \brief Get the ellipsoid geometry, or nullptr if the contained
/// geometry is not an ellipsoid.
/// \return Pointer to the visual's ellipsoid geometry, or nullptr if the
/// geometry is not an ellipsoid.
/// \return Pointer to the ellipsoid geometry, or nullptr if the geometry is
/// not an ellipsoid.
/// \sa GeometryType Type() const
public: const Ellipsoid *EllipsoidShape() const;

Expand Down
2 changes: 1 addition & 1 deletion src/Ellipsoid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ using namespace sdf;
// Private data class
class sdf::EllipsoidPrivate
{
// An ellipsoid with a three radiuses of 1 meter
/// \brief An ellipsoid with all three radii of 1 meter
public: ignition::math::Ellipsoidd ellipsoid{ignition::math::Vector3d::One};

/// \brief The SDF element pointer used during load.
Expand Down

0 comments on commit 7e95873

Please sign in to comment.