├── .gitignore ├── InitGui.py ├── LICENSE ├── PyFlowPackages ├── PyFlowCypher ├── PyFlowFreeCAD │ ├── Factories │ │ ├── PinInputWidgetFactory.py │ │ ├── UINodeFactory.py │ │ └── __init__.py │ ├── FunctionLibraries │ │ ├── Datetime.py │ │ ├── Numpy.py │ │ ├── Placement.py │ │ ├── Rotation.py │ │ ├── Vector.py │ │ └── __init__.py │ ├── Nodes │ │ ├── FreeCAD_Algebra.py │ │ ├── FreeCAD_Base.py │ │ ├── FreeCAD_Coin.py │ │ ├── FreeCAD_Combination.py │ │ ├── FreeCAD_Conversion.py │ │ ├── FreeCAD_Data.py │ │ ├── FreeCAD_Details.py │ │ ├── FreeCAD_Development.py │ │ ├── FreeCAD_Document.py │ │ ├── FreeCAD_File.py │ │ ├── FreeCAD_Flow.py │ │ ├── FreeCAD_Geom2D.py │ │ ├── FreeCAD_HighLevel.py │ │ ├── FreeCAD_Image.py │ │ ├── FreeCAD_Information.py │ │ ├── FreeCAD_Lambda.py │ │ ├── FreeCAD_Logic.py │ │ ├── FreeCAD_Nurbs.py │ │ ├── FreeCAD_Object.py │ │ ├── FreeCAD_Obsolents.py │ │ ├── FreeCAD_Placement.py │ │ ├── FreeCAD_Primitive.py │ │ ├── FreeCAD_Projection.py │ │ ├── FreeCAD_Sensor.py │ │ ├── FreeCAD_Signal.py │ │ ├── FreeCAD_Template.py │ │ ├── FreeCAD_Voronoi.py │ │ └── __init__.py │ ├── Pins │ │ ├── ArrayPin.py │ │ ├── FCobjPin.py │ │ ├── PlacementPin.py │ │ ├── RotationPin.py │ │ ├── VectorPin.py │ │ └── __init__.py │ ├── Tools │ │ ├── ComputeTool.py │ │ ├── PreviewTool.py │ │ ├── __init__.py │ │ └── res │ │ │ ├── compute.png │ │ │ ├── delete.png │ │ │ ├── freecad.png │ │ │ ├── preview.png │ │ │ └── toy.png │ ├── UI │ │ ├── UIFreeCAD_NodeBase.py │ │ ├── UIFreeCAD_ObjectNode.py │ │ ├── UIFreeCAD_Polygon.py │ │ ├── __init__.py │ │ └── icons │ │ │ ├── compute.svg │ │ │ ├── freecad.svg │ │ │ ├── freecad_2darcofcircle.svg │ │ │ ├── freecad_2darcofellipse.svg │ │ │ ├── freecad_2darcofparabola.svg │ │ │ ├── freecad_2dcircle.svg │ │ │ ├── freecad_2dellipse.svg │ │ │ ├── freecad_blinker.svg │ │ │ ├── freecad_boolean.svg │ │ │ ├── freecad_box.svg │ │ │ ├── freecad_bsplinecurve.svg │ │ │ ├── freecad_bsplinesurface.svg │ │ │ ├── freecad_common.svg │ │ │ ├── freecad_compound.svg │ │ │ ├── freecad_cone.svg │ │ │ ├── freecad_cut.svg │ │ │ ├── freecad_cylinder.svg │ │ │ ├── freecad_destruct_shape.svg │ │ │ ├── freecad_fragments.svg │ │ │ ├── freecad_fuse.svg │ │ │ ├── freecad_listofshapes.svg │ │ │ ├── freecad_listofvectors.svg │ │ │ ├── freecad_mouse.svg │ │ │ ├── freecad_plot.svg │ │ │ ├── freecad_receiver.svg │ │ │ ├── freecad_ref.svg │ │ │ ├── freecad_reflist.svg │ │ │ ├── freecad_repeatpattern.svg │ │ │ ├── freecad_shapeexplorer.svg │ │ │ ├── freecad_sphere.svg │ │ │ ├── freecad_view3d.svg │ │ │ ├── gear.svg │ │ │ ├── pin.svg │ │ │ └── show.svg │ └── __init__.py └── __init__.py ├── README.md ├── icons ├── AA.svg ├── BB.svg ├── CC.svg ├── DD.svg ├── EE.svg └── pyflow.png ├── nodeeditor ├── Commands.py ├── PyFlowGraph.py ├── PythonObjects.py ├── __init__.py ├── cointools.py ├── config.py ├── dev.py ├── dev_Algebra.py ├── dev_BSpline.py ├── dev_Coin.py ├── dev_Combination.py ├── dev_Construction.py ├── dev_Conversion.py ├── dev_Curves.py ├── dev_Data.py ├── dev_Details.py ├── dev_Development.py ├── dev_Document.py ├── dev_File.py ├── dev_Flow.py ├── dev_Generator.py ├── dev_Geom2D.py ├── dev_HighLevel.py ├── dev_Image.py ├── dev_Information.py ├── dev_Lambda.py ├── dev_Logic.py ├── dev_Object.py ├── dev_Points.py ├── dev_Primitive.py ├── dev_Projection.py ├── dev_Sensor.py ├── dev_Signal.py ├── dev_Surface.py ├── dev_Voronoi.py ├── dev_all.py ├── dev_uinode.py ├── dragger.py ├── freecad_pyflowapp.py ├── keyboard.py ├── pfwrap.py ├── say.py ├── store.py ├── tools.py └── utils.py └── testcases ├── example_elevation.py ├── example_export_import_brep.py ├── example_expresssion.py ├── example_formatdate.py ├── example_quadmesh.py └── example_tripod.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /InitGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/InitGui.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowCypher: -------------------------------------------------------------------------------- 1 | ../../PyFlowPackages/PyFlowCypher -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Factories/PinInputWidgetFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Factories/PinInputWidgetFactory.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Factories/UINodeFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Factories/UINodeFactory.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/Datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/Datetime.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/Numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/Numpy.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/Placement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/Placement.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/Rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/Rotation.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/Vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/Vector.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/FunctionLibraries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Algebra.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Base.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Coin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Coin.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Combination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Combination.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Conversion.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Data.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Details.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Development.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Document.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_File.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Flow.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Geom2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Geom2D.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_HighLevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_HighLevel.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Image.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Information.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Lambda.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Logic.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Nurbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Nurbs.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Object.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Obsolents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Obsolents.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Placement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Placement.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Primitive.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Projection.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Sensor.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Signal.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Template.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Voronoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/FreeCAD_Voronoi.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Nodes/__init__.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Pins/ArrayPin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Pins/ArrayPin.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Pins/FCobjPin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Pins/FCobjPin.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Pins/PlacementPin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Pins/PlacementPin.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Pins/RotationPin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Pins/RotationPin.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Pins/VectorPin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Pins/VectorPin.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Pins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Tools/ComputeTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Tools/ComputeTool.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Tools/PreviewTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Tools/PreviewTool.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Tools/__init__.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Tools/res/compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Tools/res/compute.png -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Tools/res/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Tools/res/delete.png -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Tools/res/freecad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Tools/res/freecad.png -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Tools/res/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Tools/res/preview.png -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/Tools/res/toy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/Tools/res/toy.png -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/UIFreeCAD_NodeBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/UIFreeCAD_NodeBase.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/UIFreeCAD_ObjectNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/UIFreeCAD_ObjectNode.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/UIFreeCAD_Polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/UIFreeCAD_Polygon.py -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/compute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/compute.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_2darcofcircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_2darcofcircle.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_2darcofellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_2darcofellipse.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_2darcofparabola.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_2darcofparabola.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_2dcircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_2dcircle.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_2dellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_2dellipse.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_blinker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_blinker.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_boolean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_boolean.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_box.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_bsplinecurve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_bsplinecurve.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_bsplinesurface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_bsplinesurface.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_common.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_common.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_compound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_compound.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_cone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_cone.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_cut.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_cylinder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_cylinder.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_destruct_shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_destruct_shape.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_fragments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_fragments.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_fuse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_fuse.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_listofshapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_listofshapes.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_listofvectors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_listofvectors.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_mouse.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_plot.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_receiver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_receiver.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_ref.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_ref.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_reflist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_reflist.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_repeatpattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_repeatpattern.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_shapeexplorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_shapeexplorer.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_sphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_sphere.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_view3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/freecad_view3d.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/gear.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/pin.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/UI/icons/show.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/UI/icons/show.svg -------------------------------------------------------------------------------- /PyFlowPackages/PyFlowFreeCAD/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/PyFlowPackages/PyFlowFreeCAD/__init__.py -------------------------------------------------------------------------------- /PyFlowPackages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/README.md -------------------------------------------------------------------------------- /icons/AA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/icons/AA.svg -------------------------------------------------------------------------------- /icons/BB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/icons/BB.svg -------------------------------------------------------------------------------- /icons/CC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/icons/CC.svg -------------------------------------------------------------------------------- /icons/DD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/icons/DD.svg -------------------------------------------------------------------------------- /icons/EE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/icons/EE.svg -------------------------------------------------------------------------------- /icons/pyflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/icons/pyflow.png -------------------------------------------------------------------------------- /nodeeditor/Commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/Commands.py -------------------------------------------------------------------------------- /nodeeditor/PyFlowGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/PyFlowGraph.py -------------------------------------------------------------------------------- /nodeeditor/PythonObjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/PythonObjects.py -------------------------------------------------------------------------------- /nodeeditor/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nodeeditor/cointools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/cointools.py -------------------------------------------------------------------------------- /nodeeditor/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/config.py -------------------------------------------------------------------------------- /nodeeditor/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev.py -------------------------------------------------------------------------------- /nodeeditor/dev_Algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Algebra.py -------------------------------------------------------------------------------- /nodeeditor/dev_BSpline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_BSpline.py -------------------------------------------------------------------------------- /nodeeditor/dev_Coin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Coin.py -------------------------------------------------------------------------------- /nodeeditor/dev_Combination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Combination.py -------------------------------------------------------------------------------- /nodeeditor/dev_Construction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Construction.py -------------------------------------------------------------------------------- /nodeeditor/dev_Conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Conversion.py -------------------------------------------------------------------------------- /nodeeditor/dev_Curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Curves.py -------------------------------------------------------------------------------- /nodeeditor/dev_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Data.py -------------------------------------------------------------------------------- /nodeeditor/dev_Details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Details.py -------------------------------------------------------------------------------- /nodeeditor/dev_Development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Development.py -------------------------------------------------------------------------------- /nodeeditor/dev_Document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Document.py -------------------------------------------------------------------------------- /nodeeditor/dev_File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_File.py -------------------------------------------------------------------------------- /nodeeditor/dev_Flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Flow.py -------------------------------------------------------------------------------- /nodeeditor/dev_Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Generator.py -------------------------------------------------------------------------------- /nodeeditor/dev_Geom2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Geom2D.py -------------------------------------------------------------------------------- /nodeeditor/dev_HighLevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_HighLevel.py -------------------------------------------------------------------------------- /nodeeditor/dev_Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Image.py -------------------------------------------------------------------------------- /nodeeditor/dev_Information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Information.py -------------------------------------------------------------------------------- /nodeeditor/dev_Lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Lambda.py -------------------------------------------------------------------------------- /nodeeditor/dev_Logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Logic.py -------------------------------------------------------------------------------- /nodeeditor/dev_Object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Object.py -------------------------------------------------------------------------------- /nodeeditor/dev_Points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Points.py -------------------------------------------------------------------------------- /nodeeditor/dev_Primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Primitive.py -------------------------------------------------------------------------------- /nodeeditor/dev_Projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Projection.py -------------------------------------------------------------------------------- /nodeeditor/dev_Sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Sensor.py -------------------------------------------------------------------------------- /nodeeditor/dev_Signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Signal.py -------------------------------------------------------------------------------- /nodeeditor/dev_Surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Surface.py -------------------------------------------------------------------------------- /nodeeditor/dev_Voronoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_Voronoi.py -------------------------------------------------------------------------------- /nodeeditor/dev_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_all.py -------------------------------------------------------------------------------- /nodeeditor/dev_uinode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dev_uinode.py -------------------------------------------------------------------------------- /nodeeditor/dragger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/dragger.py -------------------------------------------------------------------------------- /nodeeditor/freecad_pyflowapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/freecad_pyflowapp.py -------------------------------------------------------------------------------- /nodeeditor/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/keyboard.py -------------------------------------------------------------------------------- /nodeeditor/pfwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/pfwrap.py -------------------------------------------------------------------------------- /nodeeditor/say.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/say.py -------------------------------------------------------------------------------- /nodeeditor/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/store.py -------------------------------------------------------------------------------- /nodeeditor/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/tools.py -------------------------------------------------------------------------------- /nodeeditor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/nodeeditor/utils.py -------------------------------------------------------------------------------- /testcases/example_elevation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/testcases/example_elevation.py -------------------------------------------------------------------------------- /testcases/example_export_import_brep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/testcases/example_export_import_brep.py -------------------------------------------------------------------------------- /testcases/example_expresssion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/testcases/example_expresssion.py -------------------------------------------------------------------------------- /testcases/example_formatdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/testcases/example_formatdate.py -------------------------------------------------------------------------------- /testcases/example_quadmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/testcases/example_quadmesh.py -------------------------------------------------------------------------------- /testcases/example_tripod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microelly2/NodeEditor/HEAD/testcases/example_tripod.py --------------------------------------------------------------------------------