Coding style

This commit is contained in:
Anonymus Raccoon
2020-03-27 14:45:32 +01:00
parent 599ee71770
commit 146fbb43db
2 changed files with 2 additions and 2 deletions
+2
View File
@@ -33,4 +33,6 @@ gc_vector2 p2, gc_vector2 q2);
//! @param p Position of the point to check
bool is_point_in_polygon(gc_vector2 *polygon, int n, gc_vector2 p);
#define INF 10000
#endif //MY3D_TILE_COLLISION_MANAGER_H
-2
View File
@@ -9,8 +9,6 @@
#include "map_utils.h"
#include <math.h>
#define INF 10000
bool is_on_segment(gc_vector2 p, gc_vector2 q, gc_vector2 r)
{
if (q.x <= fmaxf(p.x, r.x) && q.x >= fminf(p.x, r.x) && \