-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfdf_expose.c
19 lines (17 loc) · 1017 Bytes
/
fdf_expose.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* fdf_expose.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rmc-coma <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/03/14 19:28:06 by rmc-coma #+# #+# */
/* Updated: 2016/03/14 19:31:03 by rmc-coma ### ########.fr */
/* */
/* ************************************************************************** */
#include "fdf.h"
int fdf_expose(t_fdf *ins)
{
fdf_display(ins->mesh->vertices, ins->mesh->n_vertices, ins);
return (0);
}