Skip to content

Commit

Permalink
adjusted big peer to 28M links
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5448 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
lotus committed Jan 6, 2009
1 parent 4ec1aac commit 2be119f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/plasma/plasmaGrafics.java
Expand Up @@ -249,7 +249,7 @@ private static void drawNetworkPicturePeer(final ymageMatrix img, final int x, f
//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);
Expand Down

0 comments on commit 2be119f

Please sign in to comment.