summaryrefslogtreecommitdiff
path: root/vector.h
Commit message (Collapse)AuthorAge
* Variadic functions to free matrices/vectorsJasper7 days
| | | | | Renamed 'matrix_freen' to 'matrix_free_many1'. Frees a dynamic array of matrices.
* Used forward declaration in vector.hJasper8 days
| | | | | | | Also added tag 'Matrix' to struct 'Matrix'. Makes forwards declaration available for 'Matrix'. Avoids having to import matrix.h in vector.h (and the other way around), when accessing matrix functionality.
* Added vector structJasper8 days
It's completely based on the existing matrix struct and its functions.