spelling: regularly

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2023-01-18 08:34:59 -05:00
parent ac99e44b50
commit 1b220d68e4

View File

@@ -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>