From 47df2d76eac7d904fd7f5a52d36aaa02af2630c2 Mon Sep 17 00:00:00 2001 From: Mattia Montanari Date: Tue, 25 Apr 2023 16:56:29 +0200 Subject: [PATCH] Remove unused macro --- openGJK.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/openGJK.c b/openGJK.c index 55d1907..3dac190 100644 --- a/openGJK.c +++ b/openGJK.c @@ -103,11 +103,6 @@ for (t = 0; t < 3; t++) \ s->vrtx[0][t] = sk[t]; -#define getvrtx(point, location) \ - point[0] = s->vrtx[location][0]; \ - point[1] = s->vrtx[location][1]; \ - point[2] = s->vrtx[location][2]; - #define calculateEdgeVector(p1p2, p2) \ p1p2[0] = p2[0] - s->vrtx[3][0]; \ p1p2[1] = p2[1] - s->vrtx[3][1]; \