From d153f42e732ffe1c4cac1c13207fa0ce1781b193 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 10 May 2020 22:04:35 +0200 Subject: Basic parsing --- inc/scop.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'inc') diff --git a/inc/scop.h b/inc/scop.h index 8ae9864..d6cf415 100644 --- a/inc/scop.h +++ b/inc/scop.h @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/05/09 10:41:44 by charles #+# #+# */ -/* Updated: 2020/05/09 11:41:48 by charles ### ########.fr */ +/* Updated: 2020/05/10 21:18:15 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -23,7 +23,9 @@ typedef struct { float *vertices; - unsigned int indices; + unsigned int *indices; + size_t vertices_len; + size_t indices_len; } t_object; /* -- cgit