15 lines
292 B
C
Executable File
15 lines
292 B
C
Executable File
#ifndef CANVAS_GRAPH_H
|
|
#define CANVAS_GRAPH_H
|
|
|
|
#include <stdio.h>
|
|
#include "tree.h"
|
|
|
|
struct graph_range {
|
|
double xmin, xmax;
|
|
double ymin, ymax;
|
|
};
|
|
|
|
void canvas_generate_graph(const struct expr_node *node, const struct graph_range *range, const char *function);
|
|
|
|
#endif /* CANVAS_GRAPH_H */
|