Vincent Davis Jr
fe7471e8f8
add new matrix mat2x4
...
Initial function being
glm_mat2x4_make
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-07-15 14:32:48 -04:00
Vincent Davis Jr
6317ed90e7
add new matrix mat2x3
...
Initial function being
glm_mat2x3_make
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-07-14 18:57:45 -04:00
Recep Aslantas
93cdc897a5
suppress warinngs
2023-07-08 23:13:20 +03:00
Recep Aslantas
0962f7d2e7
fix param name in inline doc
2023-07-08 12:19:22 +03:00
Recep Aslantas
8e2074c274
Merge branch 'master' into feature/glm_vec2_make
2023-07-02 22:03:40 +03:00
Recep Aslantas
b8d565c6b6
Merge branch 'master' into feature/glm_vec4_make
2023-07-02 22:02:10 +03:00
Recep Aslantas
924d92ae3f
Merge branch 'master' into feature/glm_vec3_make
2023-07-02 22:01:43 +03:00
Vincent Davis Jr
5833d1bf44
vec4: add new function glm_vec4_make
...
Function takes in a float array. Array must be
at least of size 4 and converts it into
a 4D vector.
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-07-02 13:54:10 -05:00
Vincent Davis Jr
aeeeac4c5a
vec3: add new function glm_vec3_make
...
Function takes in a float array. Array must be
at least of size 3 and converts it into
a 3D vector.
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-07-02 13:25:25 -05:00
Vincent Davis Jr
b3de85a14e
vec2: add new function glm_vec2_make
...
Just a copy of glm_vec2, but with the
word _make suffixed at the end.
Function takes in a float array array must be
at least of size 2 and converts it into
a 2D vector.
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-07-02 12:41:23 -05:00
Vincent Davis Jr
5e798a94e3
test_quat: add more robust quat_make test
...
Makes it so that it's easier to identify
the potential usecase of function. Commit also
includes a fix to the struct/quat.h glms_quat_make
comment. Should be returning versors it's not
a void function.
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-07-02 12:37:28 -05:00
Vincent Davis Jr
bfe5ea6ab7
quat: add new function glm_quat_make
...
Function takes in a 4 element float array
and converts it into a quaternion.
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-06-28 22:49:49 -05:00
Wladislav ヴラド Artsimovich
87ae96b847
Fix Singular / Plural in comments
2023-06-16 17:40:06 +09:00
Wladislav ヴラド Artsimovich
9cf4190c9b
Fix comments of vec2 explaining vec3 math
2023-06-16 17:26:30 +09:00
Wladislav ヴラド Artsimovich
702bed8173
Implement missing Struct API 3D Affine Transforms
2023-06-15 18:18:52 +09:00
Wladislav ヴラド Artsimovich
e9aa249a73
Add forgotten function listing in comment
2023-06-15 17:42:06 +09:00
Recep Aslantas
adec2ee8e6
Update box.h
2023-06-15 10:16:06 +03:00
Recep Aslantas
6183b213e2
suppress sign conversion warnings
2023-06-12 13:56:49 +03:00
Recep Aslantas
16fcaf7fc0
Update types-struct.h
2023-06-08 06:28:40 +03:00
Recep Aslantas
530ec2d0f8
reduce glms_mat[4|3|2]_make()'s dest parameter
...
the return value is the dest.
2023-05-16 14:26:11 +03:00
Recep Aslantas
610788bed1
Merge branch 'master' into bug/test-runner
2023-05-15 21:32:51 +03:00
Vincent Davis Jr
2d6538ecec
io: fix test runner.c implicit declaration glm_arch_print
...
Problem:
../test/runner.c:29:3: error: implicit declaration of function
‘glm_arch_print’ [-Werror=implicit-function-declaration]
29 | glm_arch_print(stderr);
| ^~~~~~~~~~~~~~
| glm_vec2_print
glm_arch_print is not available unless you add the DEBUG macro.
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-05-15 11:30:13 -05:00
Recep Aslantas
31cbd41e3b
Merge pull request #302 from EasyIP2023/feature/glm_mat3_make
...
mat3: add new function glm_mat3_make
2023-05-15 11:18:41 +03:00
Recep Aslantas
c691bc5bc0
Merge pull request #301 from EasyIP2023/feature/glm_mat2_make
...
mat2: add new function glm_mat2_make
2023-05-15 11:18:27 +03:00
Vincent Davis Jr
0566a040c0
mat3: add new function glm_mat3_make
...
Function takes in a 9 element float array
and converts it into a mat3 matrix.
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-05-14 20:56:25 -05:00
Vincent Davis Jr
e6681e78c8
mat2: add new function glm_mat2_make
...
Function takes in a 4 element float array
and converts it into a mat2 matrix.
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-05-14 20:30:36 -05:00
Vincent Davis Jr
e17f115f91
mat4: add new function glm_mat4_make
...
Function takes in a 16 element float array
and converts it into a mat4 matrix.
Signed-off-by: Vincent Davis Jr <vince@underview.tech >
2023-05-14 20:10:48 -05:00
Recep Aslantas
9772948831
improve printing arch name in tests
2023-05-06 16:28:52 +03:00
Recep Aslantas
988dd13d61
make GLM_TESTS_NO_COLORFUL_OUTPUT work on non-test print colors too
2023-05-06 15:36:41 +03:00
Recep Aslantas
ed09fb5819
fix glm_arch_print_name and print it on tests
2023-05-06 14:58:45 +03:00
Recep Aslantas
c4a348ac71
now working on v0.9.1
2023-05-02 08:22:18 +03:00
myfreeer
6b2c91ecf7
wasm: replace usage of -0.f to 0x80000000
...
Part of https://github.com/recp/cglm/pull/291
2023-04-22 10:50:54 +08:00
Recep Aslantas
a4b8778be9
fixes for "simd, sse: use 0x80000000 insteaf of -0.f to fix fastmath on msvc"
2023-04-21 22:42:04 +03:00
Recep Aslantas
5ce7dff812
Merge remote-tracking branch 'origin/master' into fix-simd-signmask
2023-04-21 22:31:55 +03:00
Recep Aslantas
17b3911e7c
fix struct api calls
2023-04-21 21:20:11 +03:00
Recep Aslantas
7307b1cbbe
simd, sse: use 0x80000000 insteaf of -0.f to fix fastmath on msvc
2023-04-21 20:36:50 +03:00
Recep Aslantas
391d8670c2
simd, sse: use 0x80000000 insteaf of -0.f to fix fastmath on msvc
2023-04-21 20:14:58 +03:00
Recep Aslantas
8d441902c0
fix struct api calls
2023-04-21 20:07:14 +03:00
Recep Aslantas
490d0bb9a1
Merge pull request #290 from recp/structapi-conf
...
struct: provide option to omit struct api namespace e.g. `glms_` and …
2023-04-21 17:38:22 +03:00
myfreeer
81b7c90271
simd128: simplify calls
2023-04-15 22:06:04 +08:00
Recep Aslantas
c221f8883a
struct: provide option to omit struct api namespace e.g. glms_
and an …
2023-04-09 17:20:38 +03:00
Recep Aslantas
ea8ef4a3c9
struct: provide option to omit struct api namespace e.g. glms_
and an option to add s
suffix e.g. mat4s_mul if preferred
2023-04-09 14:28:05 +03:00
myfreeer
765771227a
io: add case of wasm simd128
2023-04-08 18:28:49 +08:00
myfreeer
2614a1805d
Merge remote-tracking branch 'upstream/master'
2023-04-08 13:41:53 +08:00
myfreeer
d7c0edcbd9
simd128: minor lint
2023-04-08 13:40:46 +08:00
Recep Aslantas
0b3049dca0
utility to print selected simd path (docs)
2023-04-08 01:03:31 +03:00
Recep Aslantas
a542d54fca
utility to print selected simd path
2023-04-08 00:59:06 +03:00
myfreeer
3a9e4df393
simd128: handle both sse2 and simd128 enabled by Emscripten
...
https://github.com/recp/cglm/pull/286#issuecomment-1492985403
2023-04-02 12:39:20 +08:00
myfreeer
7ca9a64ecf
simd128: code style
2023-04-01 19:38:57 +08:00
myfreeer
51ce4db82e
simd128: code style
2023-04-01 19:38:28 +08:00