* Code cleanup;
[Persons_Comparator.git] / src / PersonRightPanel.java
index 62067f6689bc2aa4d47e0e0a4c692b34fb9159ac..f56b32db4dd1cbeff9cf50dbd365cdcad9b7ce11 100644 (file)
@@ -15,7 +15,7 @@ public class PersonRightPanel extends JPanel {
         try {
             this.personImage = ImageIO.read(new File("data/personImage.png"));
         } catch (IOException e) {
-            System.out.println(e.getStackTrace());
+            e.printStackTrace();
         }
     }
 
@@ -44,8 +44,12 @@ public class PersonRightPanel extends JPanel {
         int imageWidth = 120;
         int imageHeight = 180;
         g2d.drawImage(this.personImage.getScaledInstance(imageWidth / 2, imageHeight / 2, Image.SCALE_SMOOTH), imageWidth / 4, imageHeight / 4, this);
+        // Eyes
         g2d.setColor(personObj.getEye().getColor());
         g2d.fillOval(50, 50, 6, 3);
         g2d.fillOval(62, 50, 6, 3);
+        // Weigth
+        g2d.setColor(Color.black);
+        g2d.fillOval(44, 76, 30, (personObj.getWeight().getWeight() * 20) / 600);
     }
 }