From ee625e60c21f21e4c6fd5fea2dadead3ab337174 Mon Sep 17 00:00:00 2001 From: vurtun Date: Sun, 3 Jan 2016 17:27:52 +0100 Subject: [PATCH] removed commented out code --- zahnrad.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/zahnrad.c b/zahnrad.c index 05b0cdd..b2dbd4e 100644 --- a/zahnrad.c +++ b/zahnrad.c @@ -2651,10 +2651,6 @@ zr_canvas_path_arc_to(struct zr_canvas *list, struct zr_vec2 center, const float a = a_min + ((float)i / (float)segments) * (a_max - a_min); const float x = center.x + (float)zr_cos(a) * radius; const float y = center.y + (float)zr_sin(a) * radius; -#if 0 - const float x = center.x + (float)list->cos(a) * radius; - const float y = center.y + (float)list->sin(a) * radius; -#endif zr_canvas_path_line_to(list, zr_vec2(x, y)); } }