-
Notifications
You must be signed in to change notification settings - Fork 0
/
Polygone.java
157 lines (122 loc) · 3.19 KB
/
Polygone.java
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package logicieldedessin;
import java.awt.Graphics;
import java.util.LinkedList;
/**
* @author freshloic
*
*/
public class Polygone extends Figure{
private static final long serialVersionUID = -4577800669531061605L;
public LinkedList<Point> Sommets;
public Polygone(){this("");}
public Polygone(String nom){
Sommets = new LinkedList<>();
setNom(nom);
}
@Override
public void afficher() {
System.out.println(toString());
}
public String toString(){
return getNom();
}
@Override
public void translater(double dx, double dy) {
int taille = Sommets.size();
for( int i=1; i<taille; i++){
Sommets.get(i).translater(dx + (Sommets.get(i).distanceX(Sommets.get(0))),
dy + (Sommets.get(i).distanceY(Sommets.get(0))));
}
Sommets.get(0).translater(dx, dy);
}
@Override
public Point getCentre() {
float x = 0, y = 0;
int taille = Sommets.size();
for(Point p : Sommets){
if(p != null){
x += p.getX();
y += p.getY();
}
}
return new Point(x/taille, y/taille);
}
public LinkedList<Point> getPoints(){ return this.Sommets; }
public Object cloner(){
Polygone p = null;
try {
p = (Polygone) super.clone();
p.Sommets = new LinkedList<Point>();
for(Point pt : this.Sommets){
p.Sommets.add((Point) pt.cloner());
}
} catch (CloneNotSupportedException e) {
e.printStackTrace();
}
return p;
}
public boolean add(Point p){
Sommets.add(p);
return true;
}
public boolean equals(Polygone p){
if(p == null) return false;
if(this == p) return true;
if(this.Sommets.size() != p.Sommets.size()) return false;
if(this.Sommets.size() == 0) return false;
Point depart = this.Sommets.getFirst();
Point departP = null;
int i = 0;
while(i < p.Sommets.size() && departP == null){
if(depart.equals(p.Sommets.get(i))) departP = p.Sommets.get(i);
else i++;
}
if(departP == null) return false;
if(this.Sommets.get(1).equals(p.Sommets.get((i+1)%p.Sommets.size()))){
for(int j=2; j < p.Sommets.size(); j++){
if(!this.Sommets.get(j).equals(p.Sommets.get((i+j)%p.Sommets.size())))
return false;
}
return true;
}
else if(this.Sommets.get(1).equals(p.Sommets.get((i-1)%p.Sommets.size()))){
for(int j = 2; j < p.Sommets.size(); j++){
if(!this.Sommets.get(j).equals(p.Sommets.get((i-j + p.Sommets.size())%p.Sommets.size())))
return false;
}
return true;
}
else
{
return false;
}
}
@Override
public void paint(Graphics gc) {
if(getCouleur() != null) gc.setColor(getCouleur());
int taille = Sommets.size();
int[] xPoints = new int[taille];
int[] yPoints = new int[taille];
for( int i=0; i<taille; i++){
int x1 = (int) Sommets.get(i).getX();
int y1 = (int) Sommets.get(i).getY();
xPoints[i] = x1;
yPoints[i] = y1;
gc.drawString(getNom(),
(int) this.getCentre().getX(),
(int)this.getCentre().getY() - 30);
}
gc.fillPolygon(xPoints, yPoints, taille);
}
@Override
public int compareTo(Object o) {
if(this.getPoids() > ((Polygone)o).getPoids()) return 1;
if(this.getPoids() == ((Polygone)o).getPoids()) return 0;
return -1;
}
@Override
public int getPoids() { return this.getPoints().size(); }
public Point getLast() {
return Sommets.getLast();
}
}