├── .clang-format ├── .editorconfig ├── .gitignore ├── .gitmodules ├── .tasks ├── .vscode └── c_cpp_properties.json ├── LICENSE ├── README.md ├── deps ├── miniz │ ├── LICENSE │ ├── miniz.c │ ├── miniz.h │ └── readme.md ├── nlohmann │ └── nlohmann │ │ ├── LICENSE.txt │ │ ├── adl_serializer.hpp │ │ ├── byte_container_with_subtype.hpp │ │ ├── detail │ │ ├── abi_macros.hpp │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_custom_base_class.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── call_std │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── std_fs.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_concat.hpp │ │ ├── string_escape.hpp │ │ └── value_t.hpp │ │ ├── json.hpp │ │ ├── json_fwd.hpp │ │ ├── nlohmann_json.natvis │ │ ├── ordered_map.hpp │ │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp └── parmscript │ ├── inspectorext.cpp │ ├── inspectorext.h │ ├── jsonparm.cpp │ ├── jsonparm.h │ ├── parmexpr.lua │ ├── parminspector.cpp │ ├── parminspector.h │ ├── parmscript.cpp │ ├── parmscript.h │ ├── pyparm.cpp │ └── pyparm.h ├── examples ├── demo │ └── main.cpp ├── ngs7 │ ├── README.md │ ├── examples │ │ └── bf.scm │ ├── icon.ico │ ├── icon.rc │ ├── main.cpp │ ├── mus-config.h │ ├── ngs7.cpp │ ├── ngs7.h │ ├── s7-extensions.cpp │ ├── s7-extensions.h │ └── s7e.cpp ├── pydemo │ ├── dataview.py │ ├── document.py │ ├── edresponse.py │ ├── evaluation.py │ ├── examples │ │ └── pydemo-merge-licenses.ng │ ├── graph.py │ ├── icondef.py │ ├── libnumpy.py │ ├── libpandas.py │ ├── main.py │ ├── node.py │ └── nodelib.py └── typed_demo │ └── main.cpp ├── features.txt ├── include └── nged │ ├── entry │ ├── entry.h │ └── texture.h │ ├── gmath.h │ ├── ngdoc.h │ ├── nged.h │ ├── nged_imgui.h │ ├── ngpy.h │ ├── pybind11_imgui.h │ ├── res │ └── fa_icondef.h │ ├── style.h │ └── utils.h ├── pyproject.toml ├── screenshots ├── GIF_adv_select.gif ├── GIF_cmd_valign.gif ├── GIF_comment_and_tint.gif ├── GIF_cut_stroke.gif ├── GIF_edit_link.gif ├── GIF_edit_scheme.gif ├── GIF_focus.gif ├── GIF_fuzzysearch.gif ├── GIF_fuzzysearch_node.gif ├── GIF_linkcolor.gif ├── GIF_linkpath.gif ├── GIF_multiview.gif ├── GIF_parmscript.gif ├── GIF_router.gif ├── GIF_subgraph.gif ├── GIF_typecheck.gif ├── Snipaste_2023-09-29_00-07-44.png ├── Snipaste_s7.png ├── code_with_gvim.png ├── path-eg1.png ├── path-eg2.png └── recursion.png ├── setup.py ├── src ├── entry │ ├── dx11_main.cpp │ ├── dx11_texture.cpp │ ├── dx11_texture.h │ ├── dx12_main.cpp │ ├── dx12_texture.cpp │ ├── dx12_texture.h │ ├── entry.cpp │ ├── gl2_main.cpp │ ├── gl3_main.cpp │ ├── gl_texture.cpp │ ├── vulkan_main.cpp │ ├── vulkan_texture.cpp │ └── vulkan_texture.h ├── ngdoc.cpp ├── ngdraw.cpp ├── nged.cpp ├── nged_imgui.cpp ├── nged_imgui_fonts.cpp ├── ngpy.cpp ├── pybind11_imgui.cpp ├── res │ ├── fa_solid.hpp │ ├── licenses.inl │ ├── roboto_medium.hpp │ └── sourcecodepro.hpp └── style.cpp ├── tests ├── graph_tests.cpp ├── main.cpp ├── pytest.py ├── uitest.py └── utils_tests.cpp └── xmake.lua /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/.tasks -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/README.md -------------------------------------------------------------------------------- /deps/miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/miniz/LICENSE -------------------------------------------------------------------------------- /deps/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/miniz/miniz.c -------------------------------------------------------------------------------- /deps/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/miniz/miniz.h -------------------------------------------------------------------------------- /deps/miniz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/miniz/readme.md -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/LICENSE.txt -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/adl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/adl_serializer.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/byte_container_with_subtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/byte_container_with_subtype.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/abi_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/abi_macros.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/conversions/from_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/conversions/from_json.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/conversions/to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/conversions/to_chars.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/conversions/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/conversions/to_json.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/exceptions.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/input/binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/input/binary_reader.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/input/input_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/input/input_adapters.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/input/json_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/input/json_sax.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/input/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/input/lexer.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/input/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/input/parser.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/input/position_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/input/position_t.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/iterators/internal_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/iterators/internal_iterator.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/iterators/iter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/iterators/iter_impl.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/iterators/iteration_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/iterators/iteration_proxy.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/iterators/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/iterators/iterator_traits.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/iterators/json_reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/iterators/json_reverse_iterator.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/iterators/primitive_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/iterators/primitive_iterator.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/json_custom_base_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/json_custom_base_class.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/json_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/json_pointer.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/json_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/json_ref.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/macro_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/macro_scope.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/macro_unscope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/macro_unscope.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/meta/call_std/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/meta/call_std/begin.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/meta/call_std/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/meta/call_std/end.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/meta/cpp_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/meta/cpp_future.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/meta/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/meta/detected.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/meta/identity_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/meta/identity_tag.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/meta/is_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/meta/is_sax.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/meta/std_fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/meta/std_fs.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/meta/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/meta/type_traits.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/meta/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/meta/void_t.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/output/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/output/binary_writer.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/output/output_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/output/output_adapters.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/output/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/output/serializer.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/string_concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/string_concat.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/string_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/string_escape.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/detail/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/detail/value_t.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/json.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/nlohmann_json.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/nlohmann_json.natvis -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/thirdparty/hedley/hedley.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/thirdparty/hedley/hedley.hpp -------------------------------------------------------------------------------- /deps/nlohmann/nlohmann/thirdparty/hedley/hedley_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/nlohmann/nlohmann/thirdparty/hedley/hedley_undef.hpp -------------------------------------------------------------------------------- /deps/parmscript/inspectorext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/inspectorext.cpp -------------------------------------------------------------------------------- /deps/parmscript/inspectorext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/inspectorext.h -------------------------------------------------------------------------------- /deps/parmscript/jsonparm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/jsonparm.cpp -------------------------------------------------------------------------------- /deps/parmscript/jsonparm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/jsonparm.h -------------------------------------------------------------------------------- /deps/parmscript/parmexpr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/parmexpr.lua -------------------------------------------------------------------------------- /deps/parmscript/parminspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/parminspector.cpp -------------------------------------------------------------------------------- /deps/parmscript/parminspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/parminspector.h -------------------------------------------------------------------------------- /deps/parmscript/parmscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/parmscript.cpp -------------------------------------------------------------------------------- /deps/parmscript/parmscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/parmscript.h -------------------------------------------------------------------------------- /deps/parmscript/pyparm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/pyparm.cpp -------------------------------------------------------------------------------- /deps/parmscript/pyparm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/deps/parmscript/pyparm.h -------------------------------------------------------------------------------- /examples/demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/demo/main.cpp -------------------------------------------------------------------------------- /examples/ngs7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/ngs7/README.md -------------------------------------------------------------------------------- /examples/ngs7/examples/bf.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/ngs7/examples/bf.scm -------------------------------------------------------------------------------- /examples/ngs7/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/ngs7/icon.ico -------------------------------------------------------------------------------- /examples/ngs7/icon.rc: -------------------------------------------------------------------------------- 1 | 0 ICON "icon.ico" 2 | -------------------------------------------------------------------------------- /examples/ngs7/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/ngs7/main.cpp -------------------------------------------------------------------------------- /examples/ngs7/mus-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/ngs7/mus-config.h -------------------------------------------------------------------------------- /examples/ngs7/ngs7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/ngs7/ngs7.cpp -------------------------------------------------------------------------------- /examples/ngs7/ngs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/ngs7/ngs7.h -------------------------------------------------------------------------------- /examples/ngs7/s7-extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/ngs7/s7-extensions.cpp -------------------------------------------------------------------------------- /examples/ngs7/s7-extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/ngs7/s7-extensions.h -------------------------------------------------------------------------------- /examples/ngs7/s7e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/ngs7/s7e.cpp -------------------------------------------------------------------------------- /examples/pydemo/dataview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/dataview.py -------------------------------------------------------------------------------- /examples/pydemo/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/document.py -------------------------------------------------------------------------------- /examples/pydemo/edresponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/edresponse.py -------------------------------------------------------------------------------- /examples/pydemo/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/evaluation.py -------------------------------------------------------------------------------- /examples/pydemo/examples/pydemo-merge-licenses.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/examples/pydemo-merge-licenses.ng -------------------------------------------------------------------------------- /examples/pydemo/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/graph.py -------------------------------------------------------------------------------- /examples/pydemo/icondef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/icondef.py -------------------------------------------------------------------------------- /examples/pydemo/libnumpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/libnumpy.py -------------------------------------------------------------------------------- /examples/pydemo/libpandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/libpandas.py -------------------------------------------------------------------------------- /examples/pydemo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/main.py -------------------------------------------------------------------------------- /examples/pydemo/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/node.py -------------------------------------------------------------------------------- /examples/pydemo/nodelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/pydemo/nodelib.py -------------------------------------------------------------------------------- /examples/typed_demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/examples/typed_demo/main.cpp -------------------------------------------------------------------------------- /features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/features.txt -------------------------------------------------------------------------------- /include/nged/entry/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/entry/entry.h -------------------------------------------------------------------------------- /include/nged/entry/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/entry/texture.h -------------------------------------------------------------------------------- /include/nged/gmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/gmath.h -------------------------------------------------------------------------------- /include/nged/ngdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/ngdoc.h -------------------------------------------------------------------------------- /include/nged/nged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/nged.h -------------------------------------------------------------------------------- /include/nged/nged_imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/nged_imgui.h -------------------------------------------------------------------------------- /include/nged/ngpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/ngpy.h -------------------------------------------------------------------------------- /include/nged/pybind11_imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/pybind11_imgui.h -------------------------------------------------------------------------------- /include/nged/res/fa_icondef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/res/fa_icondef.h -------------------------------------------------------------------------------- /include/nged/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/style.h -------------------------------------------------------------------------------- /include/nged/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/include/nged/utils.h -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshots/GIF_adv_select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_adv_select.gif -------------------------------------------------------------------------------- /screenshots/GIF_cmd_valign.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_cmd_valign.gif -------------------------------------------------------------------------------- /screenshots/GIF_comment_and_tint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_comment_and_tint.gif -------------------------------------------------------------------------------- /screenshots/GIF_cut_stroke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_cut_stroke.gif -------------------------------------------------------------------------------- /screenshots/GIF_edit_link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_edit_link.gif -------------------------------------------------------------------------------- /screenshots/GIF_edit_scheme.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_edit_scheme.gif -------------------------------------------------------------------------------- /screenshots/GIF_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_focus.gif -------------------------------------------------------------------------------- /screenshots/GIF_fuzzysearch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_fuzzysearch.gif -------------------------------------------------------------------------------- /screenshots/GIF_fuzzysearch_node.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_fuzzysearch_node.gif -------------------------------------------------------------------------------- /screenshots/GIF_linkcolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_linkcolor.gif -------------------------------------------------------------------------------- /screenshots/GIF_linkpath.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_linkpath.gif -------------------------------------------------------------------------------- /screenshots/GIF_multiview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_multiview.gif -------------------------------------------------------------------------------- /screenshots/GIF_parmscript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_parmscript.gif -------------------------------------------------------------------------------- /screenshots/GIF_router.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_router.gif -------------------------------------------------------------------------------- /screenshots/GIF_subgraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_subgraph.gif -------------------------------------------------------------------------------- /screenshots/GIF_typecheck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/GIF_typecheck.gif -------------------------------------------------------------------------------- /screenshots/Snipaste_2023-09-29_00-07-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/Snipaste_2023-09-29_00-07-44.png -------------------------------------------------------------------------------- /screenshots/Snipaste_s7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/Snipaste_s7.png -------------------------------------------------------------------------------- /screenshots/code_with_gvim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/code_with_gvim.png -------------------------------------------------------------------------------- /screenshots/path-eg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/path-eg1.png -------------------------------------------------------------------------------- /screenshots/path-eg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/path-eg2.png -------------------------------------------------------------------------------- /screenshots/recursion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/screenshots/recursion.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/setup.py -------------------------------------------------------------------------------- /src/entry/dx11_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/dx11_main.cpp -------------------------------------------------------------------------------- /src/entry/dx11_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/dx11_texture.cpp -------------------------------------------------------------------------------- /src/entry/dx11_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/dx11_texture.h -------------------------------------------------------------------------------- /src/entry/dx12_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/dx12_main.cpp -------------------------------------------------------------------------------- /src/entry/dx12_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/dx12_texture.cpp -------------------------------------------------------------------------------- /src/entry/dx12_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/dx12_texture.h -------------------------------------------------------------------------------- /src/entry/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/entry.cpp -------------------------------------------------------------------------------- /src/entry/gl2_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/gl2_main.cpp -------------------------------------------------------------------------------- /src/entry/gl3_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/gl3_main.cpp -------------------------------------------------------------------------------- /src/entry/gl_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/gl_texture.cpp -------------------------------------------------------------------------------- /src/entry/vulkan_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/vulkan_main.cpp -------------------------------------------------------------------------------- /src/entry/vulkan_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/vulkan_texture.cpp -------------------------------------------------------------------------------- /src/entry/vulkan_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/entry/vulkan_texture.h -------------------------------------------------------------------------------- /src/ngdoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/ngdoc.cpp -------------------------------------------------------------------------------- /src/ngdraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/ngdraw.cpp -------------------------------------------------------------------------------- /src/nged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/nged.cpp -------------------------------------------------------------------------------- /src/nged_imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/nged_imgui.cpp -------------------------------------------------------------------------------- /src/nged_imgui_fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/nged_imgui_fonts.cpp -------------------------------------------------------------------------------- /src/ngpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/ngpy.cpp -------------------------------------------------------------------------------- /src/pybind11_imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/pybind11_imgui.cpp -------------------------------------------------------------------------------- /src/res/fa_solid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/res/fa_solid.hpp -------------------------------------------------------------------------------- /src/res/licenses.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/res/licenses.inl -------------------------------------------------------------------------------- /src/res/roboto_medium.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/res/roboto_medium.hpp -------------------------------------------------------------------------------- /src/res/sourcecodepro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/res/sourcecodepro.hpp -------------------------------------------------------------------------------- /src/style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/src/style.cpp -------------------------------------------------------------------------------- /tests/graph_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/tests/graph_tests.cpp -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/tests/pytest.py -------------------------------------------------------------------------------- /tests/uitest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/tests/uitest.py -------------------------------------------------------------------------------- /tests/utils_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/tests/utils_tests.cpp -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeproblem/nged/HEAD/xmake.lua --------------------------------------------------------------------------------