From c73b321b424af7d64a9bf5ee90dcd239cc07c8ab Mon Sep 17 00:00:00 2001 From: "Peter D. Barnes, Jr" Date: Fri, 15 May 2020 09:43:50 -0700 Subject: [PATCH] mob: fix RandomDisc docs for SetRho and SetTheta --- src/mobility/model/position-allocator.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mobility/model/position-allocator.h b/src/mobility/model/position-allocator.h index 620662ed3..7c001bdea 100644 --- a/src/mobility/model/position-allocator.h +++ b/src/mobility/model/position-allocator.h @@ -294,13 +294,13 @@ public: virtual ~RandomDiscPositionAllocator (); /** - * \brief Set the random variable that generates position radius - * \param theta random variable that represents the radius of a position in a random disc. + * \brief Set the random variable that generates position angle, in radians. + * \param theta Random variable that represents the angle in radians of a position in a random disc. */ void SetTheta (Ptr theta); /** - * \brief Set the random variable that generates position angle - * \param rho random variable that represents the angle (gradients) of a position in a random disc. + * \brief Set the random variable that generates position radius, in meters + * \param rho Random variable that represents the radius of a position, in meters, in a random disc. */ void SetRho (Ptr rho); /**