From f372cef4b307b0f5818da92042561a3d7d3faa4b Mon Sep 17 00:00:00 2001 From: TreetopFlyer Date: Sat, 8 May 2021 13:21:43 -0400 Subject: [PATCH] pivot working? --- index.html | 91 +++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 77 insertions(+), 14 deletions(-) diff --git a/index.html b/index.html index e93994a..450d45e 100644 --- a/index.html +++ b/index.html @@ -7,6 +7,7 @@ var N = { Children:[], Parents:[], + /* WalkID:0, GetUpward:[], @@ -16,6 +17,7 @@ var N = { SetUpward:[], SetDownward:[], SetOutside:[] + */ }; inChildren.forEach( inChild => N.Connect(output, "Children", inChild, "Parents") ); return output; @@ -69,29 +71,27 @@ var N = { N.Walk(inNode, "Children", gatherDown, inNode.WalkID); leaves.forEach(leaf=>N.Walk(leaf, "Parents", gatherOut, inNode.WalkID)); } + // delete modify + // create pivot + // delete pivot }; - + \ No newline at end of file