-
Notifications
You must be signed in to change notification settings - Fork 0
/
geometria.h
39 lines (29 loc) · 1.22 KB
/
geometria.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*============================================================================*/
/* GEOMETRIA */
/*----------------------------------------------------------------------------*/
/* Autor: Bogdan T. Nassu - [email protected] */
/*============================================================================*/
/** Tipos e funções para representar entidades geométricas. */
/*============================================================================*/
#ifndef __GEOMETRIA_H
#define __GEOMETRIA_H
/*============================================================================*/
/* Coordenadas de um ponto (x,y). */
typedef struct
{
int x;
int y;
} Coordenada;
Coordenada criaCoordenada (int x, int y);
/*----------------------------------------------------------------------------*/
/* Coordenadas de um retângulo. */
typedef struct
{
int c; // Cima.
int b; // Baixo.
int e; // Esquerda.
int d; // Direita.
} Retangulo;
Retangulo criaRetangulo (int c, int b, int e, int d);
/*============================================================================*/
#endif /* __GEOMETRIA_H */