Initial code for the TP2.
[TP_POO.git] / TP2 / Cercle.java
diff --git a/TP2/Cercle.java b/TP2/Cercle.java
new file mode 100644 (file)
index 0000000..4bf743f
--- /dev/null
@@ -0,0 +1,19 @@
+
+class Cercle {
+    private Point pOri;
+    private double rayon;
+
+    Cercle(Point pO, double r) {
+        pOri = pO;
+        rayon = r;
+    }
+
+    void dessiner(Piletransformations pile) {
+
+    }
+
+    void deplacer(Point p) {
+
+    }
+    
+}