├── .gitattributes ├── .gitignore ├── License.md ├── MathSample ├── FormMathSample.Designer.cs ├── FormMathSample.cs ├── FormMathSample.resx ├── MathContext.cs ├── MathSample.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── default.nds ├── NodeEditor ├── DynamicNodeContext.cs ├── DynamicNodeContextConverter.cs ├── ExecutionPath.cs ├── FeedbackType.cs ├── INodesContext.cs ├── NodeAttribute.cs ├── NodeConnection.cs ├── NodeEditor.csproj ├── NodeVisual.cs ├── NodesControl.Designer.cs ├── NodesControl.cs ├── NodesControl.resx ├── NodesGraph.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources │ ├── exec.png │ ├── nodeed.png │ └── socket.png └── SocketVisual.cs ├── NodeEditorWinforms.sln ├── README.md ├── SampleCommon ├── ControlNodeEditor.Designer.cs ├── ControlNodeEditor.cs ├── ControlNodeEditor.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── grid.png └── SampleCommon.csproj └── logo.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/.gitignore -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/License.md -------------------------------------------------------------------------------- /MathSample/FormMathSample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/FormMathSample.Designer.cs -------------------------------------------------------------------------------- /MathSample/FormMathSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/FormMathSample.cs -------------------------------------------------------------------------------- /MathSample/FormMathSample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/FormMathSample.resx -------------------------------------------------------------------------------- /MathSample/MathContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/MathContext.cs -------------------------------------------------------------------------------- /MathSample/MathSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/MathSample.csproj -------------------------------------------------------------------------------- /MathSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/Program.cs -------------------------------------------------------------------------------- /MathSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MathSample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MathSample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/Properties/Resources.resx -------------------------------------------------------------------------------- /MathSample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MathSample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/Properties/Settings.settings -------------------------------------------------------------------------------- /MathSample/default.nds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/MathSample/default.nds -------------------------------------------------------------------------------- /NodeEditor/DynamicNodeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/DynamicNodeContext.cs -------------------------------------------------------------------------------- /NodeEditor/DynamicNodeContextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/DynamicNodeContextConverter.cs -------------------------------------------------------------------------------- /NodeEditor/ExecutionPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/ExecutionPath.cs -------------------------------------------------------------------------------- /NodeEditor/FeedbackType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/FeedbackType.cs -------------------------------------------------------------------------------- /NodeEditor/INodesContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/INodesContext.cs -------------------------------------------------------------------------------- /NodeEditor/NodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/NodeAttribute.cs -------------------------------------------------------------------------------- /NodeEditor/NodeConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/NodeConnection.cs -------------------------------------------------------------------------------- /NodeEditor/NodeEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/NodeEditor.csproj -------------------------------------------------------------------------------- /NodeEditor/NodeVisual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/NodeVisual.cs -------------------------------------------------------------------------------- /NodeEditor/NodesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/NodesControl.Designer.cs -------------------------------------------------------------------------------- /NodeEditor/NodesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/NodesControl.cs -------------------------------------------------------------------------------- /NodeEditor/NodesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/NodesControl.resx -------------------------------------------------------------------------------- /NodeEditor/NodesGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/NodesGraph.cs -------------------------------------------------------------------------------- /NodeEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NodeEditor/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/Resources.Designer.cs -------------------------------------------------------------------------------- /NodeEditor/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/Resources.resx -------------------------------------------------------------------------------- /NodeEditor/Resources/exec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/Resources/exec.png -------------------------------------------------------------------------------- /NodeEditor/Resources/nodeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/Resources/nodeed.png -------------------------------------------------------------------------------- /NodeEditor/Resources/socket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/Resources/socket.png -------------------------------------------------------------------------------- /NodeEditor/SocketVisual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditor/SocketVisual.cs -------------------------------------------------------------------------------- /NodeEditorWinforms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/NodeEditorWinforms.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/README.md -------------------------------------------------------------------------------- /SampleCommon/ControlNodeEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/SampleCommon/ControlNodeEditor.Designer.cs -------------------------------------------------------------------------------- /SampleCommon/ControlNodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/SampleCommon/ControlNodeEditor.cs -------------------------------------------------------------------------------- /SampleCommon/ControlNodeEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/SampleCommon/ControlNodeEditor.resx -------------------------------------------------------------------------------- /SampleCommon/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/SampleCommon/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SampleCommon/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/SampleCommon/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SampleCommon/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/SampleCommon/Properties/Resources.resx -------------------------------------------------------------------------------- /SampleCommon/Resources/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/SampleCommon/Resources/grid.png -------------------------------------------------------------------------------- /SampleCommon/SampleCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/SampleCommon/SampleCommon.csproj -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komorra/NodeEditorWinforms/HEAD/logo.png --------------------------------------------------------------------------------