mirror of
https://github.com/g-truc/glm.git
synced 2024-11-26 18:24:35 +00:00
Fixed more typos
This commit is contained in:
parent
f8473154eb
commit
f73b0c5b80
@ -12,12 +12,11 @@
|
|||||||
|
|
||||||
#include "_fixes.hpp"
|
#include "_fixes.hpp"
|
||||||
|
|
||||||
namespace glm
|
namespace glm{
|
||||||
{
|
|
||||||
namespace core{
|
namespace core{
|
||||||
namespace function{
|
namespace function{
|
||||||
namespace common{ //!< Define common functions from Section 8.3 of GLSL 1.30.8 specification. Included in glm namespace.
|
namespace common //!< Define common functions from Section 8.3 of GLSL 1.30.8 specification. Included in glm namespace.
|
||||||
|
{
|
||||||
/// \addtogroup core_funcs
|
/// \addtogroup core_funcs
|
||||||
///@{
|
///@{
|
||||||
|
|
||||||
@ -328,7 +327,6 @@ namespace glm
|
|||||||
}//namespace common
|
}//namespace common
|
||||||
}//namespace function
|
}//namespace function
|
||||||
}//namespace core
|
}//namespace core
|
||||||
|
|
||||||
using namespace core::function::common;
|
using namespace core::function::common;
|
||||||
}//namespace glm
|
}//namespace glm
|
||||||
|
|
||||||
|
@ -10,13 +10,11 @@
|
|||||||
#ifndef glm_core_func_exponential
|
#ifndef glm_core_func_exponential
|
||||||
#define glm_core_func_exponential
|
#define glm_core_func_exponential
|
||||||
|
|
||||||
namespace glm
|
namespace glm{
|
||||||
{
|
|
||||||
namespace core{
|
namespace core{
|
||||||
namespace function{
|
namespace function{
|
||||||
//! Define all exponential functions from Section 8.2 of GLSL 1.30.8 specification. Included in glm namespace.
|
namespace exponential //!< Define all exponential functions from Section 8.2 of GLSL 1.30.8 specification. Included in glm namespace.
|
||||||
namespace exponential{
|
{
|
||||||
|
|
||||||
/// \addtogroup core_funcs
|
/// \addtogroup core_funcs
|
||||||
///@{
|
///@{
|
||||||
|
|
||||||
@ -73,11 +71,9 @@ namespace glm
|
|||||||
genType inversesqrt(genType const & x);
|
genType inversesqrt(genType const & x);
|
||||||
|
|
||||||
///@}
|
///@}
|
||||||
|
|
||||||
}//namespace exponential
|
}//namespace exponential
|
||||||
}//namespace function
|
}//namespace function
|
||||||
}//namespace core
|
}//namespace core
|
||||||
|
|
||||||
using namespace core::function::exponential;
|
using namespace core::function::exponential;
|
||||||
}//namespace glm
|
}//namespace glm
|
||||||
|
|
||||||
|
@ -10,12 +10,11 @@
|
|||||||
#ifndef glm_core_func_geometric
|
#ifndef glm_core_func_geometric
|
||||||
#define glm_core_func_geometric
|
#define glm_core_func_geometric
|
||||||
|
|
||||||
namespace glm
|
namespace glm{
|
||||||
{
|
|
||||||
namespace core{
|
namespace core{
|
||||||
namespace function{
|
namespace function{
|
||||||
namespace geometric{ //!< Define all geometric functions from Section 8.4 of GLSL 1.30.8 specification. Included in glm namespace.
|
namespace geometric //!< Define all geometric functions from Section 8.4 of GLSL 1.30.8 specification. Included in glm namespace.
|
||||||
|
{
|
||||||
/// \addtogroup core_funcs
|
/// \addtogroup core_funcs
|
||||||
/// @{
|
/// @{
|
||||||
|
|
||||||
@ -95,11 +94,9 @@ namespace glm
|
|||||||
typename genType::value_type const & eta);
|
typename genType::value_type const & eta);
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
}//namespace geometric
|
}//namespace geometric
|
||||||
}//namespace function
|
}//namespace function
|
||||||
}//namespace core
|
}//namespace core
|
||||||
|
|
||||||
using namespace core::function::geometric;
|
using namespace core::function::geometric;
|
||||||
}//namespace glm
|
}//namespace glm
|
||||||
|
|
||||||
|
@ -10,13 +10,11 @@
|
|||||||
#ifndef glm_core_func_integer
|
#ifndef glm_core_func_integer
|
||||||
#define glm_core_func_integer
|
#define glm_core_func_integer
|
||||||
|
|
||||||
namespace glm
|
namespace glm{
|
||||||
{
|
|
||||||
namespace core{
|
namespace core{
|
||||||
namespace function{
|
namespace function{
|
||||||
//! Define integer functions from Section 8.8 of GLSL 4.00.8 specification.
|
namespace integer //!< Define integer functions from Section 8.8 of GLSL 4.00.8 specification.
|
||||||
namespace integer{
|
{
|
||||||
|
|
||||||
/// \addtogroup core_funcs
|
/// \addtogroup core_funcs
|
||||||
/// @{
|
/// @{
|
||||||
|
|
||||||
@ -144,11 +142,9 @@ namespace glm
|
|||||||
typename C<T>::signed_type findMSB(C<T> const & Value);
|
typename C<T>::signed_type findMSB(C<T> const & Value);
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
}//namespace integer
|
}//namespace integer
|
||||||
}//namespace function
|
}//namespace function
|
||||||
}//namespace core
|
}//namespace core
|
||||||
|
|
||||||
using namespace core::function::integer;
|
using namespace core::function::integer;
|
||||||
}//namespace glm
|
}//namespace glm
|
||||||
|
|
||||||
|
@ -10,13 +10,11 @@
|
|||||||
#ifndef glm_core_func_matrix
|
#ifndef glm_core_func_matrix
|
||||||
#define glm_core_func_matrix
|
#define glm_core_func_matrix
|
||||||
|
|
||||||
namespace glm
|
namespace glm{
|
||||||
{
|
|
||||||
namespace core{
|
namespace core{
|
||||||
namespace function{
|
namespace function{
|
||||||
//! Define all matrix functions from Section 8.5 of GLSL 1.30.8 specification. Included in glm namespace.
|
namespace matrix //!< Define all matrix functions from Section 8.5 of GLSL 1.30.8 specification. Included in glm namespace.
|
||||||
namespace matrix{
|
{
|
||||||
|
|
||||||
/// \addtogroup core_funcs
|
/// \addtogroup core_funcs
|
||||||
/// @{
|
/// @{
|
||||||
|
|
||||||
@ -98,11 +96,9 @@ namespace glm
|
|||||||
detail::tmat4x4<T> const & m);
|
detail::tmat4x4<T> const & m);
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
}//namespace matrix
|
}//namespace matrix
|
||||||
}//namespace function
|
}//namespace function
|
||||||
}//namespace core
|
}//namespace core
|
||||||
|
|
||||||
using namespace core::function::matrix;
|
using namespace core::function::matrix;
|
||||||
}//namespace glm
|
}//namespace glm
|
||||||
|
|
||||||
|
@ -10,13 +10,11 @@
|
|||||||
#ifndef glm_core_func_noise
|
#ifndef glm_core_func_noise
|
||||||
#define glm_core_func_noise
|
#define glm_core_func_noise
|
||||||
|
|
||||||
namespace glm
|
namespace glm{
|
||||||
{
|
|
||||||
namespace core{
|
namespace core{
|
||||||
namespace function{
|
namespace function{
|
||||||
// Define all noise functions from Section 8.9 of GLSL 1.30.8 specification. Included in glm namespace.
|
namespace noise //< Define all noise functions from Section 8.9 of GLSL 1.30.8 specification. Included in glm namespace.
|
||||||
namespace noise{
|
{
|
||||||
|
|
||||||
/// \addtogroup core_funcs
|
/// \addtogroup core_funcs
|
||||||
/// @{
|
/// @{
|
||||||
|
|
||||||
@ -49,11 +47,9 @@ namespace glm
|
|||||||
detail::tvec4<typename genType::value_type> noise4(genType const & x);
|
detail::tvec4<typename genType::value_type> noise4(genType const & x);
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
}//namespace noise
|
}//namespace noise
|
||||||
}//namespace function
|
}//namespace function
|
||||||
}//namespace core
|
}//namespace core
|
||||||
|
|
||||||
using namespace core::function::noise;
|
using namespace core::function::noise;
|
||||||
}//namespace glm
|
}//namespace glm
|
||||||
|
|
||||||
|
@ -10,12 +10,10 @@
|
|||||||
#ifndef glm_core_func_packing
|
#ifndef glm_core_func_packing
|
||||||
#define glm_core_func_packing
|
#define glm_core_func_packing
|
||||||
|
|
||||||
namespace glm
|
namespace glm{
|
||||||
{
|
|
||||||
namespace core{
|
namespace core{
|
||||||
namespace function{
|
namespace function{
|
||||||
//! Define packing functions from section 8.4 floating-point pack and unpack functions of GLSL 4.00.8 specification
|
namespace packing //!< Define packing functions from section 8.4 floating-point pack and unpack functions of GLSL 4.00.8 specification
|
||||||
namespace packing
|
|
||||||
{
|
{
|
||||||
/// \addtogroup core_funcs
|
/// \addtogroup core_funcs
|
||||||
///@{
|
///@{
|
||||||
@ -118,11 +116,9 @@ namespace glm
|
|||||||
detail::tvec2<detail::uint32> unpackDouble2x32(double const & v);
|
detail::tvec2<detail::uint32> unpackDouble2x32(double const & v);
|
||||||
|
|
||||||
///@}
|
///@}
|
||||||
|
|
||||||
}//namespace packing
|
}//namespace packing
|
||||||
}//namespace function
|
}//namespace function
|
||||||
}//namespace core
|
}//namespace core
|
||||||
|
|
||||||
using namespace core::function::packing;
|
using namespace core::function::packing;
|
||||||
}//namespace glm
|
}//namespace glm
|
||||||
|
|
||||||
|
@ -10,15 +10,14 @@
|
|||||||
#ifndef glm_core_func_trigonometric
|
#ifndef glm_core_func_trigonometric
|
||||||
#define glm_core_func_trigonometric
|
#define glm_core_func_trigonometric
|
||||||
|
|
||||||
namespace glm
|
namespace glm{
|
||||||
{
|
|
||||||
namespace core{
|
namespace core{
|
||||||
namespace function{
|
namespace function{
|
||||||
//! Define Angle and trigonometry functions
|
//! Define Angle and trigonometry functions
|
||||||
//! from Section 8.1 of GLSL 1.30.8 specification.
|
//! from Section 8.1 of GLSL 1.30.8 specification.
|
||||||
//! Included in glm namespace.
|
//! Included in glm namespace.
|
||||||
namespace trigonometric{
|
namespace trigonometric
|
||||||
|
{
|
||||||
/// \addtogroup core_funcs
|
/// \addtogroup core_funcs
|
||||||
/// @{
|
/// @{
|
||||||
|
|
||||||
@ -141,11 +140,9 @@ namespace glm
|
|||||||
genType atanh(genType const & x);
|
genType atanh(genType const & x);
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
}//namespace trigonometric
|
}//namespace trigonometric
|
||||||
}//namespace function
|
}//namespace function
|
||||||
}//namespace core
|
}//namespace core
|
||||||
|
|
||||||
using namespace core::function::trigonometric;
|
using namespace core::function::trigonometric;
|
||||||
}//namespace glm
|
}//namespace glm
|
||||||
|
|
||||||
|
@ -12,8 +12,7 @@
|
|||||||
|
|
||||||
#include "_detail.hpp"
|
#include "_detail.hpp"
|
||||||
|
|
||||||
namespace glm
|
namespace glm{
|
||||||
{
|
|
||||||
namespace core{
|
namespace core{
|
||||||
namespace function{
|
namespace function{
|
||||||
//! Define vector relational functions from Section 8.6 of GLSL 1.30.8 specification.
|
//! Define vector relational functions from Section 8.6 of GLSL 1.30.8 specification.
|
||||||
@ -202,11 +201,9 @@ namespace glm
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
}//namespace vector_relational
|
}//namespace vector_relational
|
||||||
}//namespace function
|
}//namespace function
|
||||||
}//namespace core
|
}//namespace core
|
||||||
|
|
||||||
using namespace core::function::vector_relational;
|
using namespace core::function::vector_relational;
|
||||||
}//namespace glm
|
}//namespace glm
|
||||||
|
|
||||||
|
@ -35,7 +35,6 @@ namespace detail
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
struct tquat// : public genType<T, tquat>
|
struct tquat// : public genType<T, tquat>
|
||||||
{
|
{
|
||||||
|
|
||||||
enum ctor{null};
|
enum ctor{null};
|
||||||
|
|
||||||
typedef T value_type;
|
typedef T value_type;
|
||||||
|
@ -25,7 +25,6 @@ namespace glm{
|
|||||||
namespace gtc{
|
namespace gtc{
|
||||||
namespace type_ptr ///< GLM_GTC_type_ptr extension: Get access to vectors & matrices value type address.
|
namespace type_ptr ///< GLM_GTC_type_ptr extension: Get access to vectors & matrices value type address.
|
||||||
{
|
{
|
||||||
|
|
||||||
/// \addtogroup gtc_type_ptr
|
/// \addtogroup gtc_type_ptr
|
||||||
///@{
|
///@{
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user