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