Skip to content

Commit

Permalink
spelling: regularly
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Soref <[email protected]>
  • Loading branch information
jsoref committed Jan 22, 2023
1 parent ac99e44 commit 1b220d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions includes/glm/gtc/random.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,25 +52,25 @@ namespace glm
template<typename genType>
GLM_FUNC_DECL genType gaussRand(genType Mean, genType Deviation);

/// Generate a random 2D vector which coordinates are regulary distributed on a circle of a given radius
/// Generate a random 2D vector which coordinates are regularly distributed on a circle of a given radius
///
/// @see gtc_random
template<typename T>
GLM_FUNC_DECL vec<2, T, defaultp> circularRand(T Radius);

/// Generate a random 3D vector which coordinates are regulary distributed on a sphere of a given radius
/// Generate a random 3D vector which coordinates are regularly distributed on a sphere of a given radius
///
/// @see gtc_random
template<typename T>
GLM_FUNC_DECL vec<3, T, defaultp> sphericalRand(T Radius);

/// Generate a random 2D vector which coordinates are regulary distributed within the area of a disk of a given radius
/// Generate a random 2D vector which coordinates are regularly distributed within the area of a disk of a given radius
///
/// @see gtc_random
template<typename T>
GLM_FUNC_DECL vec<2, T, defaultp> diskRand(T Radius);

/// Generate a random 3D vector which coordinates are regulary distributed within the volume of a ball of a given radius
/// Generate a random 3D vector which coordinates are regularly distributed within the volume of a ball of a given radius
///
/// @see gtc_random
template<typename T>
Expand Down

0 comments on commit 1b220d6

Please sign in to comment.