GRASS 8 Programmer's Manual
8.5.0(2026)-8d6ceba290
Toggle main menu visibility
Loading...
Searching...
No Matches
htmldriver/draw.c
Go to the documentation of this file.
1
#include <grass/gis.h>
2
#include "
path.h
"
3
#include "
htmlmap.h
"
4
5
static
struct
path
path
;
6
7
void
HTML_Begin
(
void
)
8
{
9
path_begin
(&
path
);
10
}
11
12
void
HTML_Move
(
double
x
,
double
y)
13
{
14
path_move
(&
path
,
x
, y);
15
}
16
17
void
HTML_Cont
(
double
x
,
double
y)
18
{
19
path_cont
(&
path
,
x
, y);
20
}
21
22
void
HTML_Close
(
void
)
23
{
24
path_close
(&
path
);
25
}
26
27
void
HTML_Fill
(
void
)
28
{
29
html_polygon
(&
path
);
30
}
31
32
void
HTML_Stroke
(
void
)
33
{
34
path_reset
(&
path
);
35
}
HTML_Close
void HTML_Close(void)
Definition
htmldriver/draw.c:22
HTML_Begin
void HTML_Begin(void)
Definition
htmldriver/draw.c:7
HTML_Stroke
void HTML_Stroke(void)
Definition
htmldriver/draw.c:32
HTML_Move
void HTML_Move(double x, double y)
Definition
htmldriver/draw.c:12
HTML_Cont
void HTML_Cont(double x, double y)
Definition
htmldriver/draw.c:17
HTML_Fill
void HTML_Fill(void)
Definition
htmldriver/draw.c:27
htmlmap.h
html_polygon
void html_polygon(const struct path *)
Definition
htmldriver/polygon.c:51
path_close
void path_close(struct path *p)
Definition
path.c:83
path_reset
void path_reset(struct path *p)
Definition
path.c:31
path_begin
void path_begin(struct path *p)
Definition
path.c:66
path_cont
void path_cont(struct path *p, double x, double y)
Definition
path.c:78
path_move
void path_move(struct path *p, double x, double y)
Definition
path.c:72
path.h
path
Definition
path.h:15
x
#define x
htmldriver
draw.c
Generated on
for GRASS 8 Programmer's Manual by
1.17.0