Christophe
947527d3ac
Fixed string_cast, broken after fixing #916
2019-07-12 23:11:27 +02:00
Christophe
f5381ef536
Fixed quaternion componant order: w, {x, y, z} #916
2019-07-12 19:19:10 +02:00
Peter Steneteg
9a1f85ae79
Hash hashes qua instead of tquat closes #919
2019-06-26 12:48:40 +02:00
Christophe Riccio
f846aa8334
Build errors when defining GLM_ENABLE_EXPERIMENTAL #884 #883
2019-04-01 16:04:04 +02:00
Khem Raj
1150952697
glm: Remove redundant double semi-colons
...
Make clang happy
/glm/gtc/../ext/../detail/../simd/common.h:106:45: error: empty expression statement has no effect; remove unnecessary ';' to silence this warning [-Werror,-Wextra-semi-stmt]
| glm_vec4 const or0 = _mm_or_ps(and0, and1);;
| ^
| 1 error generated.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-03-01 11:13:28 -08:00
Christophe Riccio
477e803f38
- No more requirement for GLM_ENABLE_EXPERIMENTAL to use GTX extension, only a warning with GLM_MESSAGES defined #732
2019-03-01 18:25:15 +01:00
Christophe Riccio
3c28cc459a
Improved documentation #836
2019-03-01 15:55:10 +01:00
Christophe Riccio
c142d46ca3
Fixed glm::decompose #869
2019-03-01 15:50:44 +01:00
Christophe Riccio
1362d51967
Added adjugate functions to GTX_matrix_operation #151
2018-09-27 11:39:52 +02:00
Christophe Riccio
0b974f0d00
Improved doxygen API doc
2018-08-31 20:23:27 +02:00
Christophe Riccio
34f0c510b6
Fixed doxygen
2018-08-29 00:05:54 +02:00
Groove
27a1b24835
Fixed swizzle build on VC
2018-08-18 13:28:18 +02:00
Groove
6f9a194c2c
Fixed VC and C++98 warning
2018-08-18 13:08:36 +02:00
Christophe Riccio
c4ed4ed0c7
Added EXT_scalar_common, EXT_vector_common and EXT_quaternion_exponential extensions
2018-08-15 18:54:04 +02:00
Christophe Riccio
a21401d2a4
Reduce dependencies, added scalar EXT extensions
2018-08-12 23:27:02 +02:00
Christophe Riccio
26be7bda82
Fixed build
2018-08-07 14:46:56 +02:00
Christophe Riccio
8c9d16d868
Added quaternion EXT extensions
2018-08-07 13:55:13 +02:00
Christophe Riccio
78879c675c
Refactor headers
2018-08-05 15:22:49 +02:00
Christophe Riccio
1092810f2f
Fixed build
2018-08-02 18:30:46 +02:00
Groove
fbf3f2016f
Refactor configuration macros
2018-07-31 23:05:48 +02:00
Groove
d18c7f55ec
Tentative fix Visual C++ build
2018-07-29 16:13:21 +02:00
Groove
2e3fc5da83
Fixed error: comparing floating point with == or != is unsafe
2018-07-28 21:35:59 +02:00
Groove
01f9ab5b6d
Revert "- Fixed unexpected operator== behavior #723 "
...
This reverts commit c46981b4c336d5dbb0e2c2756247d8779805bcfb.
2018-07-25 00:40:39 +02:00
Groove
c46981b4c3
- Fixed unexpected operator== behavior #723
2018-07-25 00:23:38 +02:00
Groove
c3c8b73c57
Use constexpr only with C++14 compiler
2018-07-24 23:41:55 +02:00
Groove
bf7cc4a002
Merge branch 'master' of https://github.com/g-truc/glm
2018-07-24 20:15:14 +02:00
Groove
e1cddde7d5
Fixed VC2013 build
2018-07-24 20:15:08 +02:00
Groove
ea1fccae5e
Fixed definision and declarion constexpr miss match
2018-07-24 00:50:58 +02:00
Christophe Riccio
988858145c
Added intersectLineTriangle tests
2018-07-23 20:42:38 +02:00
Christophe Riccio
b6321cb85e
Clean up configuration defines
2018-07-23 19:38:57 +02:00
Christophe Riccio
508d0bcbb1
Fixed defaulted constructor and fixed anonymous struct detection and use
2018-07-23 16:02:21 +02:00
Christophe Riccio
ba4a4c6014
Added missing template parameters, removed GLM_DEFAULT_CTOR
2018-07-23 12:02:55 +02:00
Groove
7e3f42eeda
Fixed initialisation
2018-07-21 18:07:24 +02:00
Groove
802532de0f
Fixed build
2018-07-12 00:47:38 +02:00
Christophe Riccio
0f2e1fa493
Fixed build
2018-07-11 17:49:15 +02:00
Christophe Riccio
2098b073ff
Tentative fix build
2018-07-11 11:44:38 +02:00
Groove
398e66ac32
Redesigned constexpr support which requires disable GLM SIMD on Visual C++ #783
2018-07-09 21:44:28 +02:00
Christophe Riccio
0d973b40a4
Fixed int mod
2018-06-18 14:25:14 +02:00
Christophe
56ed906320
Merge pull request #772 from thechosenone124/patch-1
...
Intermediate Function Is Improperly Done #772
2018-06-01 23:49:02 +02:00
Vladimír Vondruš
aa1728cde2
Make to_string(dualquat) actually work.
...
It segfaulted somewhere deep in strlen() due to a mismatch in printf()
argument count.
2018-06-01 02:45:01 +02:00
thechosenone124
8bbbbfcafd
Intermediate Function Is Improperly Done
...
The formula for calculating the intermediate for a SQUAD interpolation is
exp((log(next * invQuat) + log(prev * invQuat)) / static_cast<T>(-4)) * curr;
The current code uses addition instead of multiplication (based on http://web.mit.edu/2.998/www/QuaternionReport1.pdf )
2018-05-30 23:36:37 -07:00
JimVonMoon
59e15deb6d
Fixed potential narrowing conversion in extractEulerAngleXYZ
2018-05-25 20:03:32 +02:00
Christophe Riccio
024e94b6c4
Fixed GTX_easing on Apple Clang
2018-05-08 21:27:22 +02:00
Christophe Riccio
ef615c8d6e
Tentative fix GTX_easing on Apple Clang
2018-05-08 20:57:34 +02:00
Christophe Riccio
5c02758b15
Tentative fix GTX_easing on Apple Clang
2018-05-08 20:05:54 +02:00
Christophe Riccio
3a7168eb55
Tentative fix Clang build
2018-05-08 17:16:35 +02:00
Christophe Riccio
e2b75b6bf7
Fixed GTX_easying clang warnings
2018-05-08 14:01:29 +02:00
Christophe Riccio
4d4dbcade6
Moved bounded function to GTX_common from EXT_vector_relational as there are quite new
2018-05-08 13:34:22 +02:00
Christophe Riccio
1d3f8a057f
Fixed GTX_easing build on Clang
2018-05-08 12:26:07 +02:00
Christophe Riccio
1cd7a47279
Fixed GTX_easing build on VS2013
2018-05-08 12:16:58 +02:00