gravity/math.h
0xdeadbeer cb348fe1b8 Repository: refactor the project
Created object and math files for operations
specific to objects and math.
2023-11-10 23:27:20 +01:00

11 lines
184 B
C

#ifndef MATH_H
#define MATH_H
#include "object.h"
#include <cglm/cglm.h>
float frand48(void);
void calculate_gravity(struct object *src, struct object *target, vec3 force);
#endif