GRASS GIS 8 Programmer's Manual 8.2.0(2022)-exported
htmldriver/draw.c
Go to the documentation of this file.
1
2#include <grass/gis.h>
3#include "path.h"
4#include "htmlmap.h"
5
6static struct path path;
7
8void HTML_Begin(void)
9{
11}
12
13void HTML_Move(double x, double y)
14{
15 path_move(&path, x, y);
16}
17
18void HTML_Cont(double x, double y)
19{
20 path_cont(&path, x, y);
21}
22
23void HTML_Close(void)
24{
26}
27
28void HTML_Fill(void)
29{
31}
32
33void HTML_Stroke(void)
34{
36}
37
void HTML_Close(void)
void HTML_Begin(void)
void HTML_Stroke(void)
void HTML_Move(double x, double y)
void HTML_Cont(double x, double y)
void HTML_Fill(void)
void html_polygon(const struct path *)
void path_close(struct path *p)
Definition: path.c:84
void path_reset(struct path *p)
Definition: path.c:32
void path_begin(struct path *p)
Definition: path.c:67
void path_cont(struct path *p, double x, double y)
Definition: path.c:79
void path_move(struct path *p, double x, double y)
Definition: path.c:73
Definition: path.h:16
#define x