-
Notifications
You must be signed in to change notification settings - Fork 0
/
desenho.h
25 lines (19 loc) · 1.07 KB
/
desenho.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*============================================================================*/
/* FUN��ES PARA DESENHAR COISAS */
/*----------------------------------------------------------------------------*/
/* Autor: Bogdan T. Nassu - [email protected] */
/*============================================================================*/
/** Fun��es para desenhar elementos em imagens. */
/*============================================================================*/
#ifndef __DESENHO_H
#define __DESENHO_H
/*============================================================================*/
#include "base.h"
#include "geometria.h"
#include "cores.h"
#include "imagem.h"
/*============================================================================*/
void desenhaLinha (Coordenada p1, Coordenada p2, Cor cor, Imagem* img);
void desenhaRetangulo (Retangulo r, Cor cor, Imagem* img);
/*============================================================================*/
#endif /* __DESENHO_H */