From 7a5e295029e8a2c176e4b75f06f52a43bca7ccbd Mon Sep 17 00:00:00 2001 From: Jesper Jensen Date: Sun, 7 Dec 2025 23:11:22 +0100 Subject: A little bit of cleanup and renaming --- src/construction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/construction.c') diff --git a/src/construction.c b/src/construction.c index 209b167..23f02a7 100644 --- a/src/construction.c +++ b/src/construction.c @@ -68,7 +68,7 @@ struct element* insert_cmd(struct drawing *drawing, struct command cmd) { #define SETSIGN(b, v) ((v) * ((2 * (b)) - 1)) -void execute_drawing(struct drawing *drawing, double inputs[]) { +void place_points(struct drawing *drawing, double inputs[]) { for(struct command *current = drawing->root; current != NULL; current = current->next) { switch(current->op) { case CMD_VALUE_INPUT: { -- cgit v1.2.3