diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..ab1f416 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..a20905f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..d7de2c6 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/out/production/projet-dev/linea/Cercle.class b/out/production/projet-dev/linea/Cercle.class new file mode 100644 index 0000000..b5bd10f Binary files /dev/null and b/out/production/projet-dev/linea/Cercle.class differ diff --git a/out/production/projet-dev/linea/Jeu.class b/out/production/projet-dev/linea/Jeu.class new file mode 100644 index 0000000..4bed8cb Binary files /dev/null and b/out/production/projet-dev/linea/Jeu.class differ diff --git a/out/production/projet-dev/linea/Ligne.class b/out/production/projet-dev/linea/Ligne.class new file mode 100644 index 0000000..72383c0 Binary files /dev/null and b/out/production/projet-dev/linea/Ligne.class differ diff --git a/out/production/projet-dev/linea/LineaAppli.class b/out/production/projet-dev/linea/LineaAppli.class new file mode 100644 index 0000000..23ad4f4 Binary files /dev/null and b/out/production/projet-dev/linea/LineaAppli.class differ diff --git a/out/production/projet-dev/linea/ObjetGraphique.class b/out/production/projet-dev/linea/ObjetGraphique.class new file mode 100644 index 0000000..7d6247f Binary files /dev/null and b/out/production/projet-dev/linea/ObjetGraphique.class differ diff --git a/out/production/projet-dev/linea/Segment.class b/out/production/projet-dev/linea/Segment.class new file mode 100644 index 0000000..94868c2 Binary files /dev/null and b/out/production/projet-dev/linea/Segment.class differ diff --git a/out/production/projet-dev/linea/ZoneDessin.class b/out/production/projet-dev/linea/ZoneDessin.class new file mode 100644 index 0000000..29ba8f7 Binary files /dev/null and b/out/production/projet-dev/linea/ZoneDessin.class differ diff --git a/projet-dev.iml b/projet-dev.iml new file mode 100644 index 0000000..d851184 --- /dev/null +++ b/projet-dev.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/Cercle.java b/src/Cercle.java index 7c2f389..83a4e1a 100644 --- a/src/Cercle.java +++ b/src/Cercle.java @@ -1,4 +1,4 @@ -package linea; +package linea; import java.awt.BasicStroke; import java.awt.Graphics; @@ -10,7 +10,7 @@ public class Cercle extends ObjetGraphique{ // il s'agit plutôt d'arcs de cercl // Hérite de la classe ObjetGraphique // Ne pas oublier qu'il y a des propriétés et méthodes reçues par l'héritage - + //------------------------------------------------------------------------- // PROPRIETES //------------------------------------------------------------------------- diff --git a/src/Jeu.java b/src/Jeu.java index 0ec8f14..a49ef86 100644 --- a/src/Jeu.java +++ b/src/Jeu.java @@ -1,4 +1,4 @@ -package linea; +package linea; import java.awt.Color; import java.awt.event.ActionEvent; diff --git a/src/Ligne.java b/src/Ligne.java index daae007..ac5baf6 100644 --- a/src/Ligne.java +++ b/src/Ligne.java @@ -1,4 +1,4 @@ -package linea; +package linea; import java.awt.BasicStroke; import java.awt.Color; diff --git a/src/LineaAppli.java b/src/LineaAppli.java index e6ffaef..eaddfaf 100644 --- a/src/LineaAppli.java +++ b/src/LineaAppli.java @@ -1,4 +1,4 @@ -package linea; +package linea; public class LineaAppli { //------------------------------------------------------------------------- diff --git a/src/ObjetGraphique.java b/src/ObjetGraphique.java index 8c33107..accda7a 100644 --- a/src/ObjetGraphique.java +++ b/src/ObjetGraphique.java @@ -1,4 +1,4 @@ -package linea; +package linea; import java.awt.Color; import java.awt.Graphics; diff --git a/src/Segment.java b/src/Segment.java index eb736fe..570c0f6 100644 --- a/src/Segment.java +++ b/src/Segment.java @@ -1,4 +1,4 @@ -package linea; +package linea; import java.awt.BasicStroke; import java.awt.Graphics; diff --git a/src/ZoneDessin.java b/src/ZoneDessin.java index 6cda923..dee5530 100644 --- a/src/ZoneDessin.java +++ b/src/ZoneDessin.java @@ -1,4 +1,4 @@ -package linea; +package linea; import java.awt.BorderLayout; import java.awt.Color; @@ -33,7 +33,7 @@ public class ZoneDessin extends JPanel { // hérite d'une classe du frameWork st // on prépare la zone d'affichage setLayout(new BorderLayout()); setPreferredSize(new Dimension(800, 600)); - setBackground(new Color(220,170,0)); + setBackground(new Color(0, 73, 220)); }