Refine the weight max and its drawing.
[Persons_Comparator.git] / src / PersonLeftPanel.java
index e8cb6f71d5a8dc5a8896c9f10887beb57dccacb4..4c4d9a40203dafb50e32aa9e3eb300baacbb4fa6 100644 (file)
@@ -49,6 +49,6 @@ public class PersonLeftPanel extends JPanel {
     public void drawWeight(int weight) {
         Graphics g = this.getGraphics();
         g.setColor(Color.black);
-        g.fillOval(44, 76, 30, (weight * 20) / 600);
+        g.fillOval(44, 80, 30, (weight * 30) / 250);
     }
 }