GRASS GIS 7 Programmer's Manual  7.8.2(2019)-exported
htmldriver/box.c
Go to the documentation of this file.
1 #include "htmlmap.h"
2 
3 void HTML_Box(double x1, double y1, double x2, double y2)
4 {
5  HTML_Begin();
6  HTML_Move(x1, y1);
7  HTML_Cont(x1, y2);
8  HTML_Cont(x2, y2);
9  HTML_Cont(x2, y1);
10  HTML_Fill();
11 }
12 
HTML_Box
void HTML_Box(double x1, double y1, double x2, double y2)
Definition: htmldriver/box.c:3
HTML_Begin
void HTML_Begin(void)
Definition: htmldriver/draw.c:8
htmlmap.h
HTML_Fill
void HTML_Fill(void)
Definition: htmldriver/draw.c:28
HTML_Cont
void HTML_Cont(double x, double y)
Definition: htmldriver/draw.c:18
HTML_Move
void HTML_Move(double x, double y)
Definition: htmldriver/draw.c:13