Difference between revisions of "Loop"

From Organic Design wiki
m (Caretaker: Format links)
(embed nodeLOOP)
Line 2: Line 2:
 
{{stub}}
 
{{stub}}
 
;Current Loop
 
;Current Loop
In [[Nodal Reduction]], a node's ''current focus'' is a node from it's ''current loop'' which is reached by following the node's ''current-loop-asociation''. In the [[nodeSpace.c]] source, the ''current-loop-association'' is reffered to by a constant called ''nodeLOOP''. Structurally, nodal loops are [[Wikipedia:Linked list#Circularly-linked list|circularly linked lists]] formed from nodal associations. In [[w:graph theory|graph theory]] a loop is called a ''Cycle''.
+
[[+nodeLOOP|]]
 
 
  
 
;Loops in general
 
;Loops in general

Revision as of 09:08, 1 November 2006


Cone.png This article or section is a stub. Stubs are articles that have not yet received substantial attention from the authors. They are short or insufficient pieces of information and require additions to further increase the article's usefulness. The project values stubs as useful first steps toward complete articles.
Current Loop

[[+nodeLOOP|]]

Loops in general

A Loop is formed when all nexts form a complete loop in one direction and all prevs link up in exactly the opposite direction. A Loop does not distinguish any List-Item as being the start or finish.

Loops are structurally identical to Queues, but are treated differently by the contexts that use them.

This has important implications when it comes to structures composed of nodes which can be Loops. Since none of the nodes is the start or finish, a Loop can be referenced by any of its items.