From 2be119f0df4bc4f8903c4dcb31817d1795a32f22 Mon Sep 17 00:00:00 2001 From: lotus Date: Tue, 6 Jan 2009 18:20:06 +0000 Subject: [PATCH] adjusted big peer to 28M links git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5448 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaGrafics.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/plasma/plasmaGrafics.java b/source/de/anomic/plasma/plasmaGrafics.java index c47dd69b1..1c4f6f384 100644 --- a/source/de/anomic/plasma/plasmaGrafics.java +++ b/source/de/anomic/plasma/plasmaGrafics.java @@ -249,7 +249,7 @@ public class plasmaGrafics { //System.out.println("Seed " + seed.hash + " has distance " + seed.dhtDistance() + ", angle = " + angle); int linelength = 20 + outerradius * (20 * (name.length() - shortestName) / (longestName - shortestName) + Math.abs(seed.hash.hashCode() % 20)) / 60; if (linelength > outerradius) linelength = outerradius; - int dotsize = 5 + (int) (seed.getLinkCount() / 1000000L); + int dotsize = 4 + (int) (seed.getLinkCount() / 2000000L); if (dotsize > 18) dotsize = 18; // draw dot img.setColor(colorDot);