mirror of
https://github.com/guezoloic/t3dsr.git
synced 2026-01-25 04:34:23 +00:00
10 lines
143 B
C
10 lines
143 B
C
#ifndef MV4_H
|
|
#define MV4_H
|
|
|
|
#include "mat4.h"
|
|
#include "vec4.h"
|
|
|
|
Vec4f_t mat4f_mul_vec4f(const Mat4f_t mat, Vec4f_t v);
|
|
|
|
#endif // MATRIX4_H
|