You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-8Lines changed: 10 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Node Graph and Editor
1
+
# Donatello Node Graph and Editor
2
2
3
-
A pure Java implementation of Node based [data flow programming](https://en.wikipedia.org/wiki/Dataflow_programming).
3
+
A pure Java implementation of Node based [data flow programming](https://en.wikipedia.org/wiki/Dataflow_programming) and a GUI editor.
4
4
5
5

6
6
@@ -9,12 +9,14 @@ that are not fluent in the archaic syntax of text-only languages.
9
9
10
10
### Features
11
11
12
-
- Parallel operation: Nodes are not directed or forced to run. There is little danger of large networks overflowing the stack.
13
-
- Foldable: Collapse a subgraph down to a single node with Fold and reverse with Unfold
14
-
- Convenient: Built in nodes for basic math and reporting.
15
-
- Tested: Unit tests for everything! If it can be tested, we shall!
16
-
- A sample editor has been provided in Java Swing. The main executable class is `com.marginallyclever.donatello.Donatello`.
17
-
- While running the Swing editor you can also access Swing-only nodes like `LoadImage` and `PrintImage`. PrintImage will appear in the background of the node editor panel.
12
+
- Nodes are not directed or forced to run via triggers. There is little danger of large networks overflowing the stack. They could be run in parallel.
13
+
- Folding: Collapse a subgraph down to a single Node with *Fold* and reverse with *Unfold*
14
+
- Convenient built-in nodes for basic math and reporting.
15
+
- Unit tests for everything! If it can be tested, we shall!
16
+
- The editor has written in Java Swing. The main executable class is `com.marginallyclever.donatello.Donatello`.
17
+
- While running the Swing editor you can also access Swing-only nodes like `LoadImage` and `PrintImage`. PrintImage results will appear in the background of the node editor panel.
18
+
- A ~/Donatello/ folder contains the application log file.
19
+
- A ~/Donatello/extensions/ folder contains 3rd party plugins. Add new Nodes or write your own.
0 commit comments