-
Notifications
You must be signed in to change notification settings - Fork 1
/
objeto.cpp
131 lines (105 loc) · 2.56 KB
/
objeto.cpp
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#include "objeto.h"
Objeto::Objeto()
{
this->id = -1;
this->nome = "";
}
void Objeto::add_ponto(Ponto p)
{
if (this->get_size() == 0)
{
this->center = p;
}
else
{
this->center =
Ponto((this->center.get_x()*this->get_size() + p.get_x())/(this->get_size()+1),
(this->center.get_y()*this->get_size() + p.get_y())/(this->get_size()+1),
(this->center.get_z()*this->get_size() + p.get_z())/(this->get_size()+1));
}
this->pontos.push_back(p);
this->pontos_scn.push_back(Ponto(0,0));
}
void Objeto::set_brush_size(double brush)
{
this->brush_size = brush;
}
std::list<Ponto> Objeto::get_pontos() {
return this->pontos;
}
std::list<Ponto> Objeto::get_pontos_scn()
{
return this->pontos_scn;
}
void Objeto::set_pontos(std::list<Ponto> pontos) {
std::list<Ponto> pts;
this->pontos = pts;
for (auto i = pontos.begin(); i != pontos.end(); i++) {
this->add_ponto(*i);
}
}
void Objeto::set_pontos_scn(std::list<Ponto> pontos_scn) {
this->pontos_scn = pontos_scn;
}
void Objeto::set_tipo(int tipo)
{
this->tipo = tipo;
}
int Objeto::get_size()
{
return this->pontos.size();
}
double Objeto::get_brush_size()
{
return this->brush_size;
}
int Objeto::get_tipo()
{
return this->tipo;
}
string Objeto::get_nome()
{
return this->nome;
}
void Objeto::set_nome(string nome) {
this->nome = nome;
}
int Objeto::get_id() const{
return this->id;
}
void Objeto::set_id(int new_id) {
this->id = new_id;
}
Ponto Objeto::get_center()
{
return this->center;
}
void Objeto::set_center(Ponto center){
this->center = center;
}
void Objeto::set_filled(bool fill) {
this->filled = fill;
}
bool Objeto::get_filled() {
return this->filled;
}
void Objeto::exec_transform(Matriz transform)
{
this->center = transform.exec_transform(center);
for (auto pt = this->pontos.begin(); pt != this->pontos.end(); pt++)
{
*pt = transform.exec_transform(*pt);
}
}
void Objeto::exec_update_scn(Matriz transform)
{
auto pt2 = this->pontos_scn.begin();
for (auto pt = this->pontos.begin(); pt != this->pontos.end(); pt++)
{
*pt2 = transform.exec_transform(*pt);
pt2++;
}
}
bool Objeto::operator==(const Objeto& a) {
return this->get_id() == a.get_id();
}