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