https://github.com/brecert/lbpl
Experiments with a Visual Programming language
https://github.com/brecert/lbpl
Last synced: 12 months ago
JSON representation
Experiments with a Visual Programming language
- Host: GitHub
- URL: https://github.com/brecert/lbpl
- Owner: brecert
- Created: 2018-08-26T12:00:55.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-14T11:43:04.000Z (over 7 years ago)
- Last Synced: 2025-02-23T07:33:06.218Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Logic-Based-Programming (LBP)
## Terms
* parent_node : a node with no input
* child_node : a node decending from another node
* final_node : a node with no output
## Setup
node
- gate
* gates are nodes with an input and output
- finalizer
* finalizers are nodes that have no output
they simply server as the end result
eg. print
## layers
nodes
* creating all of the nodes
logic/traversing
* all of the logic between the nodes happens
while traversing them.
- Alternative
all logic happens in the nodes which in turn traverse each other.
react
* visual gates
* userstate
- dragging nodes
- connecting nodes