├── .gitignore ├── LICENCE ├── README.md ├── freecad └── fcscript │ ├── __init__.py │ ├── demo │ ├── __init__.py │ ├── v_0_0_1.py │ └── v_0_0_2.py │ ├── init_gui.py │ ├── v_0_0_1.py │ └── v_0_0_2.py ├── package.xml └── screenshot.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/fcscript/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/fcscript/HEAD/README.md -------------------------------------------------------------------------------- /freecad/fcscript/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/fcscript/HEAD/freecad/fcscript/__init__.py -------------------------------------------------------------------------------- /freecad/fcscript/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freecad/fcscript/demo/v_0_0_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/fcscript/HEAD/freecad/fcscript/demo/v_0_0_1.py -------------------------------------------------------------------------------- /freecad/fcscript/demo/v_0_0_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/fcscript/HEAD/freecad/fcscript/demo/v_0_0_2.py -------------------------------------------------------------------------------- /freecad/fcscript/init_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/fcscript/HEAD/freecad/fcscript/init_gui.py -------------------------------------------------------------------------------- /freecad/fcscript/v_0_0_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/fcscript/HEAD/freecad/fcscript/v_0_0_1.py -------------------------------------------------------------------------------- /freecad/fcscript/v_0_0_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/fcscript/HEAD/freecad/fcscript/v_0_0_2.py -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/fcscript/HEAD/package.xml -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnesarco/fcscript/HEAD/screenshot.jpg --------------------------------------------------------------------------------