c
Go to file
Captain4LK 938414dd77 ULK_vector update to v1.1; ULK_matrix update to v1.1.1
ULK_vector changelog:
	- added ULK_vector_3d_slerp
	- removed all functions calling malloc/free/realloc to make library more usable

ULK_matrix changelog:
	- removed all functions calling malloc/free/realloc to make library more usable
2020-06-13 14:08:21 +02:00
include ULK_vector update to v1.1; ULK_matrix update to v1.1.1 2020-06-13 14:08:21 +02:00
src ULK_vector update to v1.1; ULK_matrix update to v1.1.1 2020-06-13 14:08:21 +02:00
LICENSE Add CC0 as second license option! 2020-06-09 11:57:03 +02:00
README.md ULK_vector update to v1.1; ULK_matrix update to v1.1.1 2020-06-13 14:08:21 +02:00

README.md

UtilityLK

This is a collection of some random C libraries I have created over time.

License

All libraries are dual licensed. You can either used them under the 3-clause BSD license, or treat them as public domain code. Some libraries are based on ones made by other people, though. You obviously still need to properly credit them! See LICENSE for details.

What's in here

This is a collection of some random C libraries I have created over time.

License

All libraries are licensed under the 3-clause BSD license. See LICENSE.md for details.

How to use

Just grab the header file and the corresponding c source file and add them to your project. You may need to update the include path in the src (.c) file.

What's in here

library version category description
ULK_vector 1.1 math simple vector math library with support for 2,3 and 4 dimensional vectors
ULK_matrix 1.1.1 math simple matrix math library with support for 2x2,2x3,3x3 and 4x4 matrix, needs ULK_vector to work