From dc4373789617a58d517eac59c3e60fabb47eafd0 Mon Sep 17 00:00:00 2001
From: chaosarium <38693485+chaosarium@users.noreply.github.com>
Date: Sat, 24 Dec 2022 17:10:59 +0000
Subject: [PATCH] fix edge cases link processing (#258)
---
assets/js/graph.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/assets/js/graph.js b/assets/js/graph.js
index 174d494..c89877b 100644
--- a/assets/js/graph.js
+++ b/assets/js/graph.js
@@ -155,7 +155,7 @@
const nodeRadius = (d) => {
const numOut = index.links[d.id]?.length || 0
const numIn = index.backlinks[d.id]?.length || 0
- return 3 + (numOut + numIn) / 4
+ return 2 + Math.sqrt(numOut + numIn)
}
// draw individual nodes
--
Gitblit v1.10.0