Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Chen <[email protected]>
  • Loading branch information
iche033 committed Dec 8, 2023
1 parent 6aa7c3b commit 2ce2f8b
Showing 1 changed file with 5 additions and 31 deletions.
36 changes: 5 additions & 31 deletions include/sdf/Surface.hh
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ namespace sdf
/// \brief Default constructor
public: Bullet();

/// \brief Load the ODE based on a element pointer. This is *not* the
/// \brief Load Bullet friction based on a element pointer. This is *not* the
/// usual entry point. Typical usage of the SDF DOM is through the Root
/// object.
/// \param[in] _sdf The SDF Element pointer
Expand Down Expand Up @@ -183,37 +183,11 @@ namespace sdf
/// \brief Torsional friction
class SDFORMAT_VISIBLE Torsional
{
/* /// \brief ODE information for a friction.
class SDFORMAT_VISIBLE ODE
{
/// \brief Default constructor
public: ODE();
/// \brief Load the ODE based on a element pointer. This is *not* the
/// usual entry point. Typical usage of the SDF DOM is through the Root
/// object.
/// \param[in] _sdf The SDF Element pointer
/// \return Errors, which is a vector of Error objects. Each Error includes
/// an error code and message. An empty vector indicates no error.
public: Errors Load(ElementPtr _sdf);
/// \brief Get the force dependent slip for torsional friction
/// \returns Force dependent slip for torsional friction.
public: double Slip() const;
/// \brief Get a pointer to the SDF element that was used during
/// load.
/// \return SDF element pointer. The value will be nullptr if Load has
/// not been called.
public: sdf::ElementPtr Element() const;
};
*/

/// \brief Default constructor
public: Torsional();

/// \brief Load the ODE based on a element pointer. This is *not* the
/// usual entry point. Typical usage of the SDF DOM is through the Root
/// \brief Load torsional friction based on a element pointer. This is *not*
/// the usual entry point. Typical usage of the SDF DOM is through the Root
/// object.
/// \param[in] _sdf The SDF Element pointer
/// \return Errors, which is a vector of Error objects. Each Error includes
Expand Down Expand Up @@ -259,8 +233,8 @@ namespace sdf
/// \returns Force dependent slip for torsional friction.
public: double ODESlip() const;

/// \brief Set the ode force dependent slip for torsional friction
/// \param[in] _slip Force dependent slip for torsional fricion.
/// \brief Set the ODE force dependent slip for torsional friction
/// \param[in] _slip Force dependent slip for torsional friction.
public: void SetODESlip(double _slip);

/// \brief Get a pointer to the SDF element that was used during
Expand Down

0 comments on commit 2ce2f8b

Please sign in to comment.