-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuPonto.~h
33 lines (28 loc) · 875 Bytes
/
uPonto.~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
//---------------------------------------------------------------------------
#ifndef uPontoH
#define uPontoH
#include "uJanela.h"
#include<system.hpp>
#include<SysUtils.hpp>
//---------------------------------------------------------------------------
class Ponto{
public:
double x;
double y;
double z;
Ponto();
Ponto(double xN, double yN);
Ponto(double xN, double yN, double zN);
int xw2vp(Janela mundo, Janela vp);
int yw2vp(Janela mundo, Janela vp);
AnsiString mostra();
void translada (double dx, double dy);
void escalona (double dx, double dy);
void rotaciona (double graus);
void reflexo (int op);
void reflexoX();
void reflexoY();
void reflexoXY();
int regionCode(Janela clip);
};
#endif