progress
This commit is contained in:
15
render.h
15
render.h
@@ -1,4 +1,17 @@
|
||||
//
|
||||
// Created by Tiago Batista Cardoso on 2/23/2026.
|
||||
//
|
||||
|
||||
#ifndef GRAPHE_RENDER_H
|
||||
#define GRAPHE_RENDER_H
|
||||
|
||||
#include "structs.h"
|
||||
#include <SDL2/SDL_render.h>
|
||||
|
||||
void render_graph(SDL_Renderer *renderer, const graph_t *graph);
|
||||
enum VISUALIZATION_TYPE { CLIQUE, LOUVAIN };
|
||||
typedef enum VISUALIZATION_TYPE VISUALIZATION_TYPE;
|
||||
|
||||
void render_graph(SDL_Renderer *renderer, const graph_t *graph,
|
||||
VISUALIZATION_TYPE);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user