mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 14:05:01 +00:00
Updated table of content
This commit is contained in:
parent
eadd43c622
commit
93c9c93947
1 changed files with 68 additions and 68 deletions
136
manual.md
136
manual.md
|
@ -213,7 +213,7 @@ To further help compilation time, GLM 0.9.5 introduced <glm/fwd.hpp> that
|
|||
#include <glm/glm.hpp>;
|
||||
```
|
||||
|
||||
### 1.3. Use sample of GLM core
|
||||
### 1.3. Use sample of GLM core <a name="section1_3"></a>
|
||||
|
||||
```cpp
|
||||
// Include GLM core features
|
||||
|
@ -236,7 +236,7 @@ glm::mat4 transform(glm::vec2 const& Orientation, glm::vec3 const& Translate, gl
|
|||
}
|
||||
```
|
||||
|
||||
### 1.4. Dependencies
|
||||
### 1.4. Dependencies <a name="section1_4"></a>
|
||||
|
||||
When <glm/glm.hpp> is included, GLM provides all the GLSL features it implements in C++.
|
||||
|
||||
|
@ -246,7 +246,7 @@ GLM is built with a C++ 11 compiler in which case [static\_assert](http://en.cpp
|
|||
If neither are detected, GLM will rely on its own implementation of static assert.
|
||||
|
||||
---
|
||||
## 2. Swizzle operators
|
||||
## 2. Swizzle operators <a name="section2"></a>
|
||||
|
||||
A common feature of shader languages like GLSL is the swizzle operators. Those allow selecting multiple components of a vector and change their order. For example, “variable.x”, “variable.xzy” and “variable.zxyy”
|
||||
form respectively a scalar, a three components vector and a four components vector. With GLSL, swizzle operators can be both R-values and L-values. Finally, vector components can be accessed using “xyzw”,
|
||||
|
@ -266,7 +266,7 @@ vec3 C = A.bgr;
|
|||
GLM supports a subset of this functionality as described in the following sub-sections. Swizzle operators are disabled by default. To enable them GLM\_SWIZZLE must be defined before any inclusion of
|
||||
<glm/glm.hpp>. Enabling swizzle operators will massively increase the size of compiled files and the compilation time.
|
||||
|
||||
### 2.1. Standard C++98 implementation
|
||||
### 2.1. Standard C++98 implementation <a name="section2_1"></a>
|
||||
|
||||
The C++98 implementation exposes the R-value swizzle operators as member functions of vector types.
|
||||
|
||||
|
@ -307,7 +307,7 @@ void foo()
|
|||
}
|
||||
```
|
||||
|
||||
### 2.2. Anonymous union member implementation
|
||||
### 2.2. Anonymous union member implementation <a name="section2_2"></a>
|
||||
|
||||
Visual C++ supports anonymous structures in union, which is a non-standard language extension, but it enables a very powerful implementation of swizzle operators on Windows supporting both L-value
|
||||
swizzle operators and a syntax that doesn’t require parentheses in some cases. This implementation is only enabled when the language extension is enabled and GLM\_SWIZZLE is defined.
|
||||
|
@ -358,9 +358,9 @@ void foo()
|
|||
```
|
||||
|
||||
---
|
||||
## 3. Preprocessor options
|
||||
## 3. Preprocessor options <a name="section3"></a>
|
||||
|
||||
### 3.1. Default precision
|
||||
### 3.1. Default precision <a name="section3_1"></a>
|
||||
|
||||
In C++, it is not possible to implement GLSL default precision (GLSL 4.10 specification section 4.5.3) using GLSL syntax.
|
||||
|
||||
|
@ -401,7 +401,7 @@ GLM\_PRECISION\_LOWP\_UINT: Low precision
|
|||
GLM\_PRECISION\_MEDIUMP\_UINT: Medium precision
|
||||
GLM\_PRECISION\_HIGHP\_UINT: High precision (default)
|
||||
|
||||
### 3.2. Compile-time message system {#compile-time-message-system .HeadingB}
|
||||
### 3.2. Compile-time message system <a name="section3_2"></a>
|
||||
|
||||
GLM includes a notification system which can display some information at build time:
|
||||
|
||||
|
@ -421,7 +421,7 @@ only once per project build.
|
|||
#include <glm/glm.hpp>
|
||||
```
|
||||
|
||||
### 3.3. C++ language detection
|
||||
### 3.3. C++ language detection <a name="section3_3"></a>
|
||||
|
||||
GLM will automatically take advantage of compilers’ language extensions when enabled. To increase cross platform compatibility and to avoid compiler extensions, a programmer can define GLM\_FORCE\_CXX98 before
|
||||
any inclusion of <glm/glm.hpp> to restrict the language feature set C++98:
|
||||
|
@ -444,7 +444,7 @@ GLM\_FORCE\_CXX11, GLM\_FORCE\_CXX14.
|
|||
GLM\_FORCE\_CXX14 overrides GLM\_FORCE\_CXX11 and GLM\_FORCE\_CXX11
|
||||
overrides GLM\_FORCE\_CXX98 defines.
|
||||
|
||||
### 3.4. SIMD support
|
||||
### 3.4. SIMD support <a name="section3_4"></a>
|
||||
|
||||
GLM provides some SIMD optimizations based on [compiler intrinsics](https://msdn.microsoft.com/en-us/library/26td21ds.aspx).
|
||||
These optimizations will be automatically thanks to compiler arguments.
|
||||
|
@ -471,7 +471,7 @@ The use of intrinsic functions by GLM implementation can be avoided using the de
|
|||
|
||||
Additionally, GLM provides a low level SIMD API in glm/simd directory for users who are really interested in writing fast algorithms.
|
||||
|
||||
### 3.5. Force inline
|
||||
### 3.5. Force inline <a name="section3_5"></a>
|
||||
|
||||
To push further the software performance, a programmer can define GLM\_FORCE\_INLINE before any inclusion of <glm/glm.hpp> to force the compiler to inline GLM code.
|
||||
|
||||
|
@ -480,7 +480,7 @@ To push further the software performance, a programmer can define GLM\_FORCE\_IN
|
|||
#include <glm/glm.hpp>
|
||||
```
|
||||
|
||||
### 3.6. Vector and matrix static size
|
||||
### 3.6. Vector and matrix static size <a name="section3_6"></a>
|
||||
|
||||
GLSL supports the member function .length() for all vector and matrix types.
|
||||
|
||||
|
@ -509,7 +509,7 @@ void foo(vec4 const & v)
|
|||
}
|
||||
```
|
||||
|
||||
### 3.7. Disabling default constructor initialization
|
||||
### 3.7. Disabling default constructor initialization <a name="section3_7"></a>
|
||||
|
||||
By default and following GLSL specifications, vector and matrix default constructors initialize the components to zero. This is a reliable behavior but initialization has a cost and it’s not always necessary.
|
||||
This behavior can be disable at compilation time by define GLM\_FORCE\_NO\_CTOR\_INIT before any inclusion of <glm/glm.hpp> or other GLM include.
|
||||
|
@ -551,7 +551,7 @@ void foo()
|
|||
}
|
||||
```
|
||||
|
||||
### 3.8. Require explicit conversions
|
||||
### 3.8. Require explicit conversions <a name="section3_8"></a>
|
||||
|
||||
GLSL supports implicit conversions of vector and matrix types. For example, an ivec4 can be implicitly converted into vec4.
|
||||
|
||||
|
@ -588,7 +588,7 @@ void foo()
|
|||
}
|
||||
```
|
||||
|
||||
### 3.9. Removing genType restriction
|
||||
### 3.9. Removing genType restriction <a name="section3_9"></a>
|
||||
|
||||
By default GLM only supports basic types as genType for vector, matrix and quaternion types:
|
||||
|
||||
|
@ -612,7 +612,7 @@ typedef glm::tvec4<half> my_hvec4;
|
|||
However, defining GLM\_FORCE\_UNRESTRICTED\_GENTYPE is not compatible with GLM\_FORCE\_SWIZZLE and will generate a compilation error if both are defined at the same time.
|
||||
|
||||
---
|
||||
## 4. Stable extensions
|
||||
## 4. Stable extensions <a name="section4"></a>
|
||||
|
||||
GLM extends the core GLSL feature set with extensions. These extensions include: quaternion, transformation, spline, matrix inverse, color spaces, etc.
|
||||
|
||||
|
@ -636,61 +636,61 @@ int foo()
|
|||
|
||||
When an extension is included, all the dependent core functionalities and extensions will be included as well.
|
||||
|
||||
### 4.1. GLM_GTC_bitfield
|
||||
### 4.1. GLM_GTC_bitfield <a name="section4_1"></a>
|
||||
|
||||
Fast bitfield operations on scalar and vector variables.
|
||||
|
||||
<glm/gtc/bitfield.hpp> need to be included to use these features.
|
||||
|
||||
### 4.2. GLM_GTC_color_space
|
||||
### 4.2. GLM_GTC_color_space <a name="section4_2"></a>
|
||||
|
||||
Conversion between linear RGB to sRGB and sRGB to linear RGB.
|
||||
|
||||
<glm/gtc/color\_space.hpp> need to be included to use these features.
|
||||
|
||||
### 4.3. GLM\_GTC\_constants
|
||||
### 4.3. GLM\_GTC\_constants <a name="section4_3"></a>
|
||||
|
||||
Provide a list of built-in constants.
|
||||
|
||||
<glm/gtc/constants.hpp> need to be included to use these features.
|
||||
|
||||
### 4.4. GLM\_GTC\_epsilon
|
||||
### 4.4. GLM\_GTC\_epsilon <a name="section4_4"></a>
|
||||
|
||||
Approximate equal and not equal comparisons with selectable epsilon.
|
||||
|
||||
<glm/gtc/epsilon.hpp> need to be included to use these features.
|
||||
|
||||
### 4.5. GLM\_GTC\_functions
|
||||
### 4.5. GLM\_GTC\_functions <a name="section4_5"></a>
|
||||
|
||||
Useful functions.
|
||||
|
||||
<glm/gtc/functions.hpp> need to be included to use these features.
|
||||
|
||||
### 4.6. GLM\_GTC\_integer
|
||||
### 4.6. GLM\_GTC\_integer <a name="section4_6"></a>
|
||||
|
||||
Provide integer variants of GLM core functions.
|
||||
|
||||
<glm/gtc/integer.hpp> need to be included to use these features.
|
||||
|
||||
### 4.7. GLM\_GTC\_matrix\_access
|
||||
### 4.7. GLM\_GTC\_matrix\_access <a name="section4_7"></a>
|
||||
|
||||
Define functions to access rows or columns of a matrix easily.
|
||||
|
||||
<glm/gtc/matrix\_access.hpp> need to be included to use these features.
|
||||
|
||||
### 4.8. GLM\_GTC\_matrix\_integer
|
||||
### 4.8. GLM\_GTC\_matrix\_integer <a name="section4_8"></a>
|
||||
|
||||
Provide integer matrix types. Inverse and determinant functions are not supported for these types.
|
||||
|
||||
<glm/gtc/matrix\_integer.hpp> need to be included to use these features.
|
||||
|
||||
### 4.9. GLM\_GTC\_matrix\_inverse
|
||||
### 4.9. GLM\_GTC\_matrix\_inverse <a name="section4_9"></a>
|
||||
|
||||
Define additional matrix inverting functions.
|
||||
|
||||
<glm/gtc/matrix\_inverse.hpp> need to be included to use these features.
|
||||
|
||||
### 4.10. GLM\_GTC\_matrix\_transform
|
||||
### 4.10. GLM\_GTC\_matrix\_transform <a name="section4_10"></a>
|
||||
|
||||
Define functions that generate common transformation matrices.
|
||||
|
||||
|
@ -699,7 +699,7 @@ projective matrix functions (perspective, ortho, etc) are designed to expect. Th
|
|||
|
||||
<glm/gtc/matrix\_transform.hpp> need to be included to use these features.
|
||||
|
||||
### 4.11. GLM\_GTC\_noise
|
||||
### 4.11. GLM\_GTC\_noise <a name="section4_11"></a>
|
||||
|
||||
Define 2D, 3D and 4D procedural noise functions.
|
||||
|
||||
|
@ -732,20 +732,20 @@ Figure 4.11.8: glm::perlin(glm::vec3(x / 16.f, y / 16.f, 0.5f), glm::vec3(2.0f))
|
|||

|
||||
Figure 4.11.9: glm::perlin(glm::vec4(x / 16.f, y / 16.f, glm::vec2(0.5f)), glm::vec4(2.0f));
|
||||
|
||||
### 4.12. GLM\_GTC\_packing
|
||||
### 4.12. GLM\_GTC\_packing <a name="section4_12"></a>
|
||||
|
||||
Convert scalar and vector types to packed formats. This extension can also unpack packed data to the original format. The use of packing functions will results in precision lost. However, the extension
|
||||
guarantee that packing a value previously unpacked from the same format will be perform loselessly.
|
||||
|
||||
<glm/gtc/packing.hpp> need to be included to use these features.
|
||||
|
||||
### 4.13. GLM\_GTC\_quaternion
|
||||
### 4.13. GLM\_GTC\_quaternion <a name="section4_13"></a>
|
||||
|
||||
Define a quaternion type and several quaternion operations.
|
||||
|
||||
<glm/gtc/quaternion.hpp> need to be included to use these features.
|
||||
|
||||
### 4.14. GLM\_GTC\_random
|
||||
### 4.14. GLM\_GTC\_random <a name="section4_14"></a>
|
||||
|
||||
Generate random number from various distribution methods.
|
||||
|
||||
|
@ -769,25 +769,25 @@ Figure 4.14.5: glm::vec4(glm::ballRand(1.0f), 1);
|
|||

|
||||
Figure 4.14.6: glm::vec4(glm::gaussRand(glm::vec3(0), glm::vec3(1)), 1);
|
||||
|
||||
### 4.15. GLM\_GTC\_reciprocal
|
||||
### 4.15. GLM\_GTC\_reciprocal <a name="section4_15"></a>
|
||||
|
||||
Provide hyperbolic functions: secant, cosecant, cotangent, etc.
|
||||
|
||||
<glm/gtc/reciprocal.hpp> need to be included to use these functionalities.
|
||||
|
||||
### 4.16. GLM\_GTC\_round
|
||||
### 4.16. GLM\_GTC\_round <a name="section4_16"></a>
|
||||
|
||||
Rounding operation on power of two and multiple values.
|
||||
|
||||
<glm/gtc/round.hpp> need to be included to use these functionalities.
|
||||
|
||||
### 4.17. GLM\_GTC\_type\_aligned
|
||||
### 4.17. GLM\_GTC\_type\_aligned <a name="section4_17"></a>
|
||||
|
||||
Aligned vector types.
|
||||
|
||||
<glm/gtc/type\_aligned.hpp> need to be included to use these functionalities.
|
||||
|
||||
### 4.18. GLM\_GTC\_type\_precision
|
||||
### 4.18. GLM\_GTC\_type\_precision <a name="section4_18"></a>
|
||||
|
||||
Add vector and matrix types with defined precisions. Eg, i8vec4: vector of 4 signed integer of 8 bits.
|
||||
|
||||
|
@ -855,7 +855,7 @@ Available defines for 64-bit floating-point types (glm::f64vec\*, glm::f64mat\*,
|
|||
|
||||
<glm/gtc/type\_precision.hpp> need to be included to use these functionalities.
|
||||
|
||||
### 4.19. GLM\_GTC\_type\_ptr
|
||||
### 4.19. GLM\_GTC\_type\_ptr <a name="section4_19"></a>
|
||||
|
||||
Handle the interaction between pointers and vector, matrix types.
|
||||
|
||||
|
@ -899,22 +899,22 @@ implicit cast in this example. However cast operators may produce programs runni
|
|||
|
||||
<glm/gtc/type\_ptr.hpp> need to be included to use these features.
|
||||
|
||||
### 4.20. GLM\_GTC\_ulp
|
||||
### 4.20. GLM\_GTC\_ulp <a name="section4_20"></a>
|
||||
|
||||
Allow the measurement of the accuracy of a function against a reference implementation. This extension works on floating-point data and provides results in [ULP](http://ljk.imag.fr/membres/Carine.Lucas/TPScilab/JMMuller/ulp-toms.pdf).
|
||||
|
||||
<glm/gtc/ulp.hpp> need to be included to use these features.
|
||||
|
||||
### 4.21. GLM\_GTC\_vec1
|
||||
### 4.21. GLM\_GTC\_vec1 <a name="section4_21"></a>
|
||||
|
||||
Add \*vec1 types.
|
||||
|
||||
<glm/gtc/vec1.hpp> need to be included to use these features.
|
||||
|
||||
---
|
||||
## 5. OpenGL interoperability
|
||||
## 5. OpenGL interoperability <a name="section5"></a>
|
||||
|
||||
### 5.1. GLM replacements for deprecated OpenGL functions
|
||||
### 5.1. GLM replacements for deprecated OpenGL functions <a name="section5_1"></a>
|
||||
|
||||
OpenGL 3.1 specification has deprecated some features that have been removed from OpenGL 3.2 core profile specification. GLM provides some replacement functions.
|
||||
|
||||
|
@ -1061,7 +1061,7 @@ From GLM\_GTC\_matrix\_transform extension:
|
|||
From GLM\_GTC\_matrix\_transform extension:
|
||||
<glm/gtc/matrix\_transform.hpp>
|
||||
|
||||
### 5.2. GLM replacements for GLU functions
|
||||
### 5.2. GLM replacements for GLU functions <a name="section5_2"></a>
|
||||
|
||||
***gluLookAt: ***
|
||||
|
||||
|
@ -1197,15 +1197,15 @@ From GLM\_GTC\_matrix\_transform extension:
|
|||
<glm/gtc/matrix\_transform.hpp>
|
||||
|
||||
---
|
||||
## 6. Known issues
|
||||
## 6. Known issues <a name="section6"></a>
|
||||
|
||||
This section reports the divergences of GLM with GLSL.
|
||||
|
||||
### 6.1. not function
|
||||
### 6.1. not function <a name="section6_1"></a>
|
||||
|
||||
The GLSL keyword not is also a keyword in C++. To prevent name collisions, ensure cross compiler support and a high API consistency, the GLSL not function has been implemented with the name not\_.
|
||||
|
||||
### 6.2. Precision qualifiers support
|
||||
### 6.2. Precision qualifiers support <a name="section6_2"></a>
|
||||
|
||||
GLM supports GLSL precision qualifiers through prefixes instead of qualifiers. For example, additionally to vec4, GLM exposes lowp\_vec4, mediump\_vec4 and highp\_vec4 types.
|
||||
|
||||
|
@ -1238,42 +1238,42 @@ ivec3 foo(const vec4 & v)
|
|||
```
|
||||
|
||||
---
|
||||
## 7. FAQ
|
||||
## 7. FAQ <a name="section7"></a>
|
||||
|
||||
### 7.1 Why GLM follows GLSL specification and conventions?
|
||||
### 7.1 Why GLM follows GLSL specification and conventions? <a name="section7_1"></a>
|
||||
|
||||
Following GLSL conventions is a really strict policy of GLM. It has been designed following the idea that everyone does its own math library with his own conventions. The idea is that brilliant developers (the OpenGL ARB) worked together and agreed to make GLSL. Following GLSL conventions
|
||||
is a way to find consensus. Moreover, basically when a developer knows GLSL, he knows GLM.
|
||||
|
||||
### 7.2. Does GLM run GLSL program?
|
||||
### 7.2. Does GLM run GLSL program? <a name="section7_2"></a>
|
||||
|
||||
No, GLM is a C++ implementation of a subset of GLSL.
|
||||
|
||||
### 7.3. Does a GLSL compiler build GLM codes?
|
||||
### 7.3. Does a GLSL compiler build GLM codes? <a name="section7_3"></a>
|
||||
|
||||
No, this is not what GLM attends to do.
|
||||
|
||||
### 7.4. Should I use ‘GTX’ extensions?
|
||||
### 7.4. Should I use ‘GTX’ extensions? <a name="section7_4"></a>
|
||||
|
||||
GTX extensions are qualified to be experimental extensions. In GLM this means that these extensions might change from version to version without any restriction. In practice, it doesn’t really change except time to
|
||||
time. GTC extensions are stabled, tested and perfectly reliable in time. Many GTX extensions extend GTC extensions and provide a way to explore features and implementations and APIs and then are promoted to GTC
|
||||
extensions. This is fairly the way OpenGL features are developed; through extensions.
|
||||
|
||||
### 7.5. Where can I ask my questions?
|
||||
### 7.5. Where can I ask my questions? <a name="section7_5"></a>
|
||||
|
||||
A good place is [stackoverflow](http://stackoverflow.com/search?q=GLM) using the GLM tag.
|
||||
|
||||
### 7.6. Where can I find the documentation of extensions?
|
||||
### 7.6. Where can I find the documentation of extensions? <a name="section7_6"></a>
|
||||
|
||||
The Doxygen generated documentation includes a complete list of all extensions available. Explore this [*API documentation*](http://glm.g-truc.net/html/index.html) to get a complete
|
||||
view of all GLM capabilities!
|
||||
|
||||
### 7.7. Should I use ‘using namespace glm;’?
|
||||
### 7.7. Should I use ‘using namespace glm;’? <a name="section7_7"></a>
|
||||
|
||||
NO! Chances are that if using namespace glm; is called, especially in a header file, name collisions will happen as GLM is based on GLSL which uses common tokens for types and functions. Avoiding using namespace
|
||||
glm; will a higher compatibility with third party library and SDKs.
|
||||
|
||||
### 7.8. Is GLM fast?
|
||||
### 7.8. Is GLM fast? <a name="section7_8"></a>
|
||||
|
||||
GLM is mainly designed to be convenient and that's why it is written against the GLSL specification.
|
||||
|
||||
|
@ -1282,26 +1282,26 @@ mediump and highp qualifiers, GLM provides approximations which trade precision
|
|||
|
||||
However, on performance critical code paths, we should expect that dedicated algorithms should be written to reach peak performance.
|
||||
|
||||
### 7.9. When I build with Visual C++ with /W4 warning level, I have warnings...
|
||||
### 7.9. When I build with Visual C++ with /W4 warning level, I have warnings... <a name="section7_9"></a>
|
||||
|
||||
You should not have any warnings even in /W4 mode. However, if you expect such level for your code, then you should ask for the same level to the compiler by at least disabling the Visual C++ language extensions
|
||||
(/Za) which generates warnings when used. If these extensions are enabled, then GLM will take advantage of them and the compiler will generate warnings.
|
||||
|
||||
### 7.10. Why some GLM functions can crash because of division by zero?
|
||||
### 7.10. Why some GLM functions can crash because of division by zero? <a name="section7_10"></a>
|
||||
|
||||
GLM functions crashing is the result of a domain error that follows the precedent given by C and C++ libraries. For example, it’s a domain error to pass a null vector to glm::normalize function.
|
||||
|
||||
### 7.11. What unit for angles is used in GLM?
|
||||
### 7.11. What unit for angles is used in GLM? <a name="section7_11"></a>
|
||||
|
||||
GLSL is using radians but GLU is using degrees to express angles. This has caused GLM to use inconsistent units for angles. Starting with GLM 0.9.6, all GLM functions are using radians. For more information, follow
|
||||
the [link](http://www.g-truc.net/post-0693.html#menu).
|
||||
|
||||
---
|
||||
## 8. Code samples
|
||||
## 8. Code samples <a name="section8"></a>
|
||||
|
||||
This series of samples only shows various GLM features without consideration of any sort.
|
||||
|
||||
### 8.1. Compute a triangle normal
|
||||
### 8.1. Compute a triangle normal <a name="section8_1"></a>
|
||||
|
||||
```cpp
|
||||
#include <glm/glm.hpp> // vec3 normalize cross
|
||||
|
@ -1321,7 +1321,7 @@ glm::vec3 computeNormal(glm::vec3 const& a, glm::vec3 const& b, glm::vec3 const&
|
|||
}
|
||||
```
|
||||
|
||||
### 8.2. Matrix transform
|
||||
### 8.2. Matrix transform <a name="section8_2"></a>
|
||||
|
||||
```cpp
|
||||
#include <glm/glm.hpp> // vec3, vec4, ivec4, mat4
|
||||
|
@ -1344,7 +1344,7 @@ void setUniformMVP(GLuint Location, glm::vec3 const& Translate, glm::vec3 const&
|
|||
}
|
||||
```
|
||||
|
||||
### 8.3. Vector types
|
||||
### 8.3. Vector types <a name="section8_3"></a>
|
||||
|
||||
```cpp
|
||||
#include <glm/glm.hpp> // vec2
|
||||
|
@ -1393,7 +1393,7 @@ glm::i32vec2 const PositionDataI32[VertexCount] =
|
|||
};
|
||||
```
|
||||
|
||||
### 8.4. Lighting
|
||||
### 8.4. Lighting <a name="section8_4"></a>
|
||||
|
||||
```cpp
|
||||
#include <glm/glm.hpp> // vec3 normalize reflect dot pow
|
||||
|
@ -1431,19 +1431,19 @@ glm::vec3 lighting(intersection const& Intersection, material const& Material, l
|
|||
```
|
||||
|
||||
---
|
||||
## 9. References
|
||||
## 9. References <a name="section9"></a>
|
||||
|
||||
### 9.1. OpenGL specifications
|
||||
### 9.1. OpenGL specifications <a name="section9_1"></a>
|
||||
|
||||
* OpenGL 4.3 core specification
|
||||
* [GLSL 4.30 specification](http://www.opengl.org/registry/doc/GLSLangSpec.4.30.7.diff.pdf)
|
||||
{width="2.859722222222222in" height="1.6083333333333334in"}- [*GLU 1.3 specification*](http://www.opengl.org/documentation/specs/glu/glu1_3.pdf)
|
||||
|
||||
### 9.2. External links
|
||||
### 9.2. External links <a name="section9_2"></a>
|
||||
|
||||
* [GLM on stackoverflow](http://stackoverflow.com/search?q=GLM)
|
||||
|
||||
### 9.3. Projects using GLM
|
||||
### 9.3. Projects using GLM <a name="section9_3"></a>
|
||||
|
||||
***[Leo’s Forture](http://www.leosfortune.com/) ***
|
||||
|
||||
|
@ -1511,7 +1511,7 @@ Simple, easy-to-follow examples with GLSL source code, as well as a basic descri
|
|||
|
||||
[***Are you using GLM in a project?***](mailto:glm@g-truc.net)
|
||||
|
||||
### 9.4. OpenGL tutorials using GLM
|
||||
### 9.4. OpenGL tutorials using GLM <a name="section9_4"></a>
|
||||
|
||||
* [*The OpenGL Samples Pack*](http://www.g-truc.net/project-0026.html#menu), samples that show how to set up all the different new features
|
||||
* [*Learning Modern 3D Graphics programming*](http://www.arcsynthesis.org/gltut/), a great OpenGL tutorial using GLM by Jason L. McKesson
|
||||
|
@ -1527,7 +1527,7 @@ Simple, easy-to-follow examples with GLSL source code, as well as a basic descri
|
|||
* [Learn OpenGL](mailto:http://learnopengl.com/), OpenGL tutorial
|
||||
** [Are you using GLM in a tutorial?](mailto:glm@g-truc.net)*
|
||||
|
||||
### 9.5. Equivalent for other languages
|
||||
### 9.5. Equivalent for other languages <a name="section9_5"></a>
|
||||
|
||||
* [*GlmSharp*](https://github.com/Philip-Trettner/GlmSharp): Open-source semi-generated GLM-flavored math library for .NET/C\#.
|
||||
* [glm-js](https://github.com/humbletim/glm-js): JavaScript adaptation of the OpenGL Mathematics (GLM) C++ library interfaces
|
||||
|
@ -1538,14 +1538,14 @@ Simple, easy-to-follow examples with GLSL source code, as well as a basic descri
|
|||
* [openll](https://github.com/Polkm/openll): Lua bindings for OpenGL, GLM, GLFW, OpenAL, SOIL and PhysicsFS
|
||||
* [glm-rs](https://github.com/dche/glm-rs): GLSL mathematics for Rust programming language
|
||||
|
||||
### 9.6. Alternatives to GLM
|
||||
### 9.6. Alternatives to GLM <a name="section9_6"></a>
|
||||
|
||||
* [*CML*](http://cmldev.net/): The CML (Configurable Math Library) is a free C++ math library for games and graphics.
|
||||
* [*Eigen*](http://eigen.tuxfamily.org/): A more heavy weight math library for general linear algebra in C++.
|
||||
* [*glhlib*](http://glhlib.sourceforge.net/): A much more than glu C library.
|
||||
* Are you using or working on an alternative library to GLM?
|
||||
|
||||
### 9.7. Acknowledgements
|
||||
### 9.7. Acknowledgements <a name="section9_7"></a>
|
||||
|
||||
GLM is developed and maintained by [*Christophe Riccio*](http://www.g-truc.net) but many contributors have made this project what it is.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue