├── .gitattributes ├── .gitignore ├── CheckForPlacements.FCMacro ├── FixLineWidth.FCMacro ├── LICENSE ├── README.md ├── TDChainDistances.FCMacro ├── TDCustomFormat.FCMacro ├── TDEdgeIntersection.FCMacro ├── TDTangentialMeasure.FCMacro ├── TDThread.FCMacro ├── Voronoi.FCMacro └── icons ├── CustomFormat.svg ├── EdgeIntersection.svg ├── TDChainDistances.svg ├── TDTangentialMeasure.svg └── Voronoi.svg /.gitattributes: -------------------------------------------------------------------------------- 1 | *.FCMacro linguist-language=Python 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /CheckForPlacements.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/CheckForPlacements.FCMacro -------------------------------------------------------------------------------- /FixLineWidth.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/FixLineWidth.FCMacro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/README.md -------------------------------------------------------------------------------- /TDChainDistances.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/TDChainDistances.FCMacro -------------------------------------------------------------------------------- /TDCustomFormat.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/TDCustomFormat.FCMacro -------------------------------------------------------------------------------- /TDEdgeIntersection.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/TDEdgeIntersection.FCMacro -------------------------------------------------------------------------------- /TDTangentialMeasure.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/TDTangentialMeasure.FCMacro -------------------------------------------------------------------------------- /TDThread.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/TDThread.FCMacro -------------------------------------------------------------------------------- /Voronoi.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/Voronoi.FCMacro -------------------------------------------------------------------------------- /icons/CustomFormat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/icons/CustomFormat.svg -------------------------------------------------------------------------------- /icons/EdgeIntersection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/icons/EdgeIntersection.svg -------------------------------------------------------------------------------- /icons/TDChainDistances.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/icons/TDChainDistances.svg -------------------------------------------------------------------------------- /icons/TDTangentialMeasure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/icons/TDTangentialMeasure.svg -------------------------------------------------------------------------------- /icons/Voronoi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reox/FreeCAD_macros/HEAD/icons/Voronoi.svg --------------------------------------------------------------------------------