-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplotgraph.h
More file actions
11 lines (11 loc) · 839 Bytes
/
plotgraph.h
File metadata and controls
11 lines (11 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
/* This file was automatically generated. Do not edit! */
#include <cairo/cairo.h>
void draw_Axis(cairo_t *context,int widht,int height);
void draw_Backgroud(cairo_t *context,int width,int height);
void show_title(cairo_t *context, int width, int height, const char *title, int colors[]);
void plot_Point(cairo_t *context, int x, int y, int colors[],double scale);
void show_Points(cairo_t *context, int x[], int y[], int colors[], double scale,int width, int height,int xyPointsAmount);
double return_escalaX(int x[], int xyPointsAmount,int width);
double return_escalaY(int y[], int xyPointsAmount,int height);
void draw_lines(cairo_t *context,int x[], int y[], int width, int height, int colors[],int xyPointsAmount);
void draw_area_by_lines(cairo_t *context,int x[], int y[], int width, int height, int colors[],int xyPointsAmount);