diff --git a/includes/glm/gtx/associated_min_max.hpp b/includes/glm/gtx/associated_min_max.hpp index 1042c13..8b27454 100644 --- a/includes/glm/gtx/associated_min_max.hpp +++ b/includes/glm/gtx/associated_min_max.hpp @@ -2,7 +2,7 @@ /// @file glm/gtx/associated_min_max.hpp /// /// @see core (dependence) -/// @see gtx_extented_min_max (dependence) +/// @see gtx_extended_min_max (dependence) /// /// @defgroup gtx_associated_min_max GLM_GTX_associated_min_max /// @ingroup gtx diff --git a/includes/glm/gtx/extended_min_max.hpp b/includes/glm/gtx/extended_min_max.hpp index 26802c3..5d2d90c 100644 --- a/includes/glm/gtx/extended_min_max.hpp +++ b/includes/glm/gtx/extended_min_max.hpp @@ -3,10 +3,10 @@ /// /// @see core (dependence) /// -/// @defgroup gtx_extended_min_max GLM_GTX_extented_min_max +/// @defgroup gtx_extended_min_max GLM_GTX_extended_min_max /// @ingroup gtx /// -/// Include to use the features of this extension. +/// Include to use the features of this extension. /// /// Min and max functions for 3 to 4 parameters. @@ -16,11 +16,11 @@ #include "../glm.hpp" #ifndef GLM_ENABLE_EXPERIMENTAL -# error "GLM: GLM_GTX_extented_min_max is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it." +# error "GLM: GLM_GTX_extended_min_max is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it." #endif #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED) -# pragma message("GLM: GLM_GTX_extented_min_max extension included") +# pragma message("GLM: GLM_GTX_extended_min_max extension included") #endif namespace glm @@ -29,7 +29,7 @@ namespace glm /// @{ /// Return the minimum component-wise values of 3 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template GLM_FUNC_DECL T min( T const& x, @@ -37,7 +37,7 @@ namespace glm T const& z); /// Return the minimum component-wise values of 3 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template class C> GLM_FUNC_DECL C min( C const& x, @@ -45,7 +45,7 @@ namespace glm typename C::T const& z); /// Return the minimum component-wise values of 3 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template class C> GLM_FUNC_DECL C min( C const& x, @@ -53,7 +53,7 @@ namespace glm C const& z); /// Return the minimum component-wise values of 4 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template GLM_FUNC_DECL T min( T const& x, @@ -62,7 +62,7 @@ namespace glm T const& w); /// Return the minimum component-wise values of 4 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template class C> GLM_FUNC_DECL C min( C const& x, @@ -71,7 +71,7 @@ namespace glm typename C::T const& w); /// Return the minimum component-wise values of 4 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template class C> GLM_FUNC_DECL C min( C const& x, @@ -80,7 +80,7 @@ namespace glm C const& w); /// Return the maximum component-wise values of 3 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template GLM_FUNC_DECL T max( T const& x, @@ -88,7 +88,7 @@ namespace glm T const& z); /// Return the maximum component-wise values of 3 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template class C> GLM_FUNC_DECL C max( C const& x, @@ -96,7 +96,7 @@ namespace glm typename C::T const& z); /// Return the maximum component-wise values of 3 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template class C> GLM_FUNC_DECL C max( C const& x, @@ -104,7 +104,7 @@ namespace glm C const& z); /// Return the maximum component-wise values of 4 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template GLM_FUNC_DECL T max( T const& x, @@ -113,7 +113,7 @@ namespace glm T const& w); /// Return the maximum component-wise values of 4 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template class C> GLM_FUNC_DECL C max( C const& x, @@ -122,7 +122,7 @@ namespace glm typename C::T const& w); /// Return the maximum component-wise values of 4 inputs - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template class C> GLM_FUNC_DECL C max( C const& x, @@ -134,7 +134,7 @@ namespace glm /// /// @tparam genType Floating-point or integer; scalar or vector types. /// - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template GLM_FUNC_DECL genType fmin(genType x, genType y); @@ -142,7 +142,7 @@ namespace glm /// /// @tparam genType Floating-point; scalar or vector types. /// - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max /// @see std::fmax documentation template GLM_FUNC_DECL genType fmax(genType x, genType y); @@ -151,7 +151,7 @@ namespace glm /// /// @tparam genType Floating-point scalar or vector types. /// - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template GLM_FUNC_DECL genType fclamp(genType x, genType minVal, genType maxVal); @@ -161,7 +161,7 @@ namespace glm /// @tparam T Floating-point scalar types /// @tparam Q Value from qualifier enum /// - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template GLM_FUNC_DECL vec fclamp(vec const& x, T minVal, T maxVal); @@ -171,7 +171,7 @@ namespace glm /// @tparam T Floating-point scalar types /// @tparam Q Value from qualifier enum /// - /// @see gtx_extented_min_max + /// @see gtx_extended_min_max template GLM_FUNC_DECL vec fclamp(vec const& x, vec const& minVal, vec const& maxVal); diff --git a/includes/glm/gtx/matrix_cross_product.hpp b/includes/glm/gtx/matrix_cross_product.hpp index 6feb4f1..aa82dfd 100644 --- a/includes/glm/gtx/matrix_cross_product.hpp +++ b/includes/glm/gtx/matrix_cross_product.hpp @@ -2,7 +2,7 @@ /// @file glm/gtx/matrix_cross_product.hpp /// /// @see core (dependence) -/// @see gtx_extented_min_max (dependence) +/// @see gtx_extended_min_max (dependence) /// /// @defgroup gtx_matrix_cross_product GLM_GTX_matrix_cross_product /// @ingroup gtx diff --git a/includes/glm/gtx/matrix_major_storage.hpp b/includes/glm/gtx/matrix_major_storage.hpp index d3020f7..440ead9 100644 --- a/includes/glm/gtx/matrix_major_storage.hpp +++ b/includes/glm/gtx/matrix_major_storage.hpp @@ -2,7 +2,7 @@ /// @file glm/gtx/matrix_major_storage.hpp /// /// @see core (dependence) -/// @see gtx_extented_min_max (dependence) +/// @see gtx_extended_min_max (dependence) /// /// @defgroup gtx_matrix_major_storage GLM_GTX_matrix_major_storage /// @ingroup gtx diff --git a/includes/glm/gtx/normal.hpp b/includes/glm/gtx/normal.hpp index 1089d87..72f3a21 100644 --- a/includes/glm/gtx/normal.hpp +++ b/includes/glm/gtx/normal.hpp @@ -2,7 +2,7 @@ /// @file glm/gtx/normal.hpp /// /// @see core (dependence) -/// @see gtx_extented_min_max (dependence) +/// @see gtx_extended_min_max (dependence) /// /// @defgroup gtx_normal GLM_GTX_normal /// @ingroup gtx diff --git a/includes/glm/gtx/orthonormalize.hpp b/includes/glm/gtx/orthonormalize.hpp index 47b10c6..47c4d9c 100644 --- a/includes/glm/gtx/orthonormalize.hpp +++ b/includes/glm/gtx/orthonormalize.hpp @@ -2,7 +2,7 @@ /// @file glm/gtx/orthonormalize.hpp /// /// @see core (dependence) -/// @see gtx_extented_min_max (dependence) +/// @see gtx_extended_min_max (dependence) /// /// @defgroup gtx_orthonormalize GLM_GTX_orthonormalize /// @ingroup gtx diff --git a/includes/glm/gtx/quaternion.hpp b/includes/glm/gtx/quaternion.hpp index e3c03de..91f5f3f 100644 --- a/includes/glm/gtx/quaternion.hpp +++ b/includes/glm/gtx/quaternion.hpp @@ -2,14 +2,14 @@ /// @file glm/gtx/quaternion.hpp /// /// @see core (dependence) -/// @see gtx_extented_min_max (dependence) +/// @see gtx_extended_min_max (dependence) /// /// @defgroup gtx_quaternion GLM_GTX_quaternion /// @ingroup gtx /// /// Include to use the features of this extension. /// -/// Extented quaternion types and functions +/// Extended quaternion types and functions #pragma once diff --git a/includes/glm/gtx/std_based_type.hpp b/includes/glm/gtx/std_based_type.hpp index 6183a62..7a7669f 100644 --- a/includes/glm/gtx/std_based_type.hpp +++ b/includes/glm/gtx/std_based_type.hpp @@ -2,7 +2,7 @@ /// @file glm/gtx/std_based_type.hpp /// /// @see core (dependence) -/// @see gtx_extented_min_max (dependence) +/// @see gtx_extended_min_max (dependence) /// /// @defgroup gtx_std_based_type GLM_GTX_std_based_type /// @ingroup gtx