├── .gitattributes ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .lgtm.yml ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── BIM └── WallDebase.FCMacro ├── Conversion ├── DeepCopy.FCMacro ├── DeepCopy.svg ├── DxfToSketchLayers.FCMacro ├── MultiCopy.FCMacro ├── MultiCopy.svg └── MultiCopy │ ├── MultiCopyAuxFunc.py │ ├── MultiCopyCore.py │ ├── MultiCopyGui.py │ ├── __init__.py │ └── resources │ ├── MultiCopy.svg │ ├── MultiCopy_Commands_Dialog.ui │ └── MultiCopy_Main_Dialog.ui ├── FCRotateViewAbsolute.FCMacro ├── FEM ├── ExportFem.FCMacro ├── FemAnimateModeShapes.FCMacro └── fem_animate_mode_shapes.ui ├── Foto.FCMacro ├── GenevaWheelGUI.py ├── ImportExport ├── Export2Slicer.FCMacro ├── Export2Slicer.png ├── FabricationCutlist.FCMacro ├── FabricationCutlist.png ├── LabelsToClipboard.FCMacro ├── LabelsToClipboard.svg ├── LabelsToClipboard.svg.md ├── ObjectsToPython.FCMacro ├── ObjectsToPython.svg └── ObjectsToPython │ ├── ObjectsToPython.ui │ └── README.md ├── Information ├── CenterOfMass.FCMacro ├── DatumPlaneLocalAxis.FCMacro ├── DatumPlaneLocalAxis.svg ├── DatumPlaneLocalAxis.txt ├── GetGlobalPlacement-test.txt ├── GetGlobalPlacement.FCMacro ├── GetGlobalPlacement.svg ├── InfoPlus.FCMacro ├── InfoPlus.svg ├── InfoPlus │ └── ui │ │ └── InfoPlus.ui ├── MeasureCircle.FCMacro ├── MeasureCircle.png ├── SimpleProperties.FCMacro └── TreeToAscii.FCMacro ├── ObjectCreation ├── AeroFoil.FCMacro ├── AeroFoil.svg ├── AeroFoil_UI_Files │ ├── AeroFoil_CSVInput_Dialog.ui │ ├── AeroFoil_CurvesInput_Dialog.ui │ ├── AeroFoil_DATInput_Dialog.ui │ ├── AeroFoil_FileLoad_Dialog.ui │ ├── AeroFoil_Final_Dialog.ui │ ├── AeroFoil_Initial_Dialog.ui │ ├── AeroFoil_Math_Functions_Box.ui │ ├── AeroFoil_NACA4Digit_Dialog.ui │ ├── AeroFoil_NACA5Digit_Dialog.ui │ ├── AeroFoil_PointsInput_Dialog.ui │ └── AeroFoil_mfb_img.gif ├── AirfoilImportAndScale.FCMacro ├── BSpline3D.FCMacro ├── BoxCreator.FCMacro ├── BoxCreator.svg ├── Draft_Circle_3_Points.FCMacro ├── EllipseCenter2Points.FCMacro ├── G3d.FCMacro ├── G3d.svg ├── HalfHull.FCMacro ├── HilbertCurve.FCMacro ├── HilbertCurve.svg ├── HyperbolaCreater.FCMacro ├── Macro_FCCircularText.FCMacro ├── ParabolaCreater.FCMacro ├── ScatterObjectsOnSurface.FCMacro ├── ScatterObjectsOnSurface.svg ├── ScrewMaker.FCMacro ├── TimingGear.FCMacro ├── TimingGear.png ├── boxcreator │ ├── Readme.md │ ├── __init__.py │ ├── boxcreator.py │ ├── boxcreator.ui │ ├── boxcreator_screenshot.jpg │ └── boxcreator_screenshot2.jpg └── g3d │ ├── translations │ ├── g3d_en.txt │ ├── g3d_es.txt │ └── g3d_it.txt │ └── ui │ └── g3d15.ui ├── ParametricObjectCreation ├── GeodesicDome.FCMacro ├── HoneycombSolid.FCMacro ├── HoneycombSolid.xpm ├── Rectellipse.FCMacro ├── geodesic_dome │ ├── __init__.py │ └── geodesic_dome.py └── honeycomb_solid │ ├── __init__.py │ └── honeycomb_solid.py ├── PureGui ├── GuiResetToolbars.FCMacro ├── GuiResetToolbars.svg ├── GuiSpacemouseRotationOff.FCMacro ├── GuiSpacemouseRotationOn.FCMacro ├── GuiSpacemouseRotationToggle.FCMacro ├── SplitPropEditor.FCMacro ├── ViewRotation.FCMacro ├── ViewRotationOut.png ├── ViewRotationRight.png └── ViewRotationUp.png ├── README.md ├── Sketcher ├── SketchUnmap.FCMacro ├── SketchUnmap.svg ├── SketcherBlockAll.FCMacro ├── SketcherFixAllPoints.FCMacro └── SketcherFixAllPoints.svg ├── SolidSweep.FCMacro ├── Spreadsheet └── .gitkeep ├── TechDraw ├── LasercutterSVGExport.FCMacro ├── LasercutterSVGExport.svg ├── LasercutterSVGExport │ ├── LasercutterSVGExport_screenshot.png │ ├── LasercutterTechdrawExport.py │ ├── README.md │ └── lasercuttersvg.ui ├── TechDrawAnnoTextFromv018.FCMacro ├── TechDrawMigrateFromv018.FCMacro ├── TechDrawSymbolsLibrary.FCMacro ├── TechDrawTools.FCMacro ├── TechDrawTools.svg └── TechDrawViewSet.FCMacro ├── Utility ├── GroupSorting.FCMacro ├── GroupSorting.svg ├── HighlightCommon.FCMacro ├── HighlightCommon.png ├── HighlightDifference.FCMacro ├── HighlightDifference.svg ├── MessageBox.FCMacro ├── PiecesTemplates.FCMacro ├── PiecesTemplates.svg ├── PiecesTemplates │ ├── Groups.txt │ └── ui │ │ └── PiecesTemplates.ui ├── PlacementAbsolufy.FCMacro ├── SelectVisible.FCMacro ├── SketchAp.FCMacro ├── SketchAp.svg ├── StraightenObject.FCMacro ├── Transparencies.FCMacro ├── Transparencies.svg ├── WikiObjectPropertiesListGenerator.FCMacro ├── WikiObjectPropertiesListGenerator.svg ├── pcbway.FCMacro ├── treeHelper.FCMacro └── treeHelper │ ├── treeHelper.svg │ └── ui_treewindow.py ├── apothemBasedPrism.py ├── icons ├── Camera │ ├── FCCamera_00.png │ ├── FCCamera_01.png │ ├── FCCamera_02.png │ ├── FCCamera_03.png │ ├── FCCamera_04.png │ ├── FCCamera_05.png │ ├── FCCamera_06.png │ ├── FCCamera_07.png │ ├── FCCamera_08.png │ ├── FCCamera_Axis_rotation_X.png │ ├── FCCamera_Axis_rotation_Y.png │ └── FCCamera_Axis_rotation_Z.png ├── HyperbolaIcon.png ├── MeasureCircle.png ├── MeasureCircle.svg ├── RotateView │ ├── out.png │ ├── right.png │ ├── right_abs.png │ └── up.png ├── SelectVisible.png └── SelectVisible.svg ├── makecamera2dview.py └── myMacroDir ├── __init__.py └── myMacro.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py? 2 | -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /BIM/WallDebase.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/BIM/WallDebase.FCMacro -------------------------------------------------------------------------------- /Conversion/DeepCopy.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/DeepCopy.FCMacro -------------------------------------------------------------------------------- /Conversion/DeepCopy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/DeepCopy.svg -------------------------------------------------------------------------------- /Conversion/DxfToSketchLayers.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/DxfToSketchLayers.FCMacro -------------------------------------------------------------------------------- /Conversion/MultiCopy.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/MultiCopy.FCMacro -------------------------------------------------------------------------------- /Conversion/MultiCopy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/MultiCopy.svg -------------------------------------------------------------------------------- /Conversion/MultiCopy/MultiCopyAuxFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/MultiCopy/MultiCopyAuxFunc.py -------------------------------------------------------------------------------- /Conversion/MultiCopy/MultiCopyCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/MultiCopy/MultiCopyCore.py -------------------------------------------------------------------------------- /Conversion/MultiCopy/MultiCopyGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/MultiCopy/MultiCopyGui.py -------------------------------------------------------------------------------- /Conversion/MultiCopy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/MultiCopy/__init__.py -------------------------------------------------------------------------------- /Conversion/MultiCopy/resources/MultiCopy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/MultiCopy/resources/MultiCopy.svg -------------------------------------------------------------------------------- /Conversion/MultiCopy/resources/MultiCopy_Commands_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/MultiCopy/resources/MultiCopy_Commands_Dialog.ui -------------------------------------------------------------------------------- /Conversion/MultiCopy/resources/MultiCopy_Main_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Conversion/MultiCopy/resources/MultiCopy_Main_Dialog.ui -------------------------------------------------------------------------------- /FCRotateViewAbsolute.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/FCRotateViewAbsolute.FCMacro -------------------------------------------------------------------------------- /FEM/ExportFem.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/FEM/ExportFem.FCMacro -------------------------------------------------------------------------------- /FEM/FemAnimateModeShapes.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/FEM/FemAnimateModeShapes.FCMacro -------------------------------------------------------------------------------- /FEM/fem_animate_mode_shapes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/FEM/fem_animate_mode_shapes.ui -------------------------------------------------------------------------------- /Foto.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Foto.FCMacro -------------------------------------------------------------------------------- /GenevaWheelGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/GenevaWheelGUI.py -------------------------------------------------------------------------------- /ImportExport/Export2Slicer.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/Export2Slicer.FCMacro -------------------------------------------------------------------------------- /ImportExport/Export2Slicer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/Export2Slicer.png -------------------------------------------------------------------------------- /ImportExport/FabricationCutlist.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/FabricationCutlist.FCMacro -------------------------------------------------------------------------------- /ImportExport/FabricationCutlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/FabricationCutlist.png -------------------------------------------------------------------------------- /ImportExport/LabelsToClipboard.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/LabelsToClipboard.FCMacro -------------------------------------------------------------------------------- /ImportExport/LabelsToClipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/LabelsToClipboard.svg -------------------------------------------------------------------------------- /ImportExport/LabelsToClipboard.svg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/LabelsToClipboard.svg.md -------------------------------------------------------------------------------- /ImportExport/ObjectsToPython.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/ObjectsToPython.FCMacro -------------------------------------------------------------------------------- /ImportExport/ObjectsToPython.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/ObjectsToPython.svg -------------------------------------------------------------------------------- /ImportExport/ObjectsToPython/ObjectsToPython.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/ObjectsToPython/ObjectsToPython.ui -------------------------------------------------------------------------------- /ImportExport/ObjectsToPython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ImportExport/ObjectsToPython/README.md -------------------------------------------------------------------------------- /Information/CenterOfMass.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/CenterOfMass.FCMacro -------------------------------------------------------------------------------- /Information/DatumPlaneLocalAxis.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/DatumPlaneLocalAxis.FCMacro -------------------------------------------------------------------------------- /Information/DatumPlaneLocalAxis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/DatumPlaneLocalAxis.svg -------------------------------------------------------------------------------- /Information/DatumPlaneLocalAxis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/DatumPlaneLocalAxis.txt -------------------------------------------------------------------------------- /Information/GetGlobalPlacement-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/GetGlobalPlacement-test.txt -------------------------------------------------------------------------------- /Information/GetGlobalPlacement.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/GetGlobalPlacement.FCMacro -------------------------------------------------------------------------------- /Information/GetGlobalPlacement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/GetGlobalPlacement.svg -------------------------------------------------------------------------------- /Information/InfoPlus.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/InfoPlus.FCMacro -------------------------------------------------------------------------------- /Information/InfoPlus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/InfoPlus.svg -------------------------------------------------------------------------------- /Information/InfoPlus/ui/InfoPlus.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/InfoPlus/ui/InfoPlus.ui -------------------------------------------------------------------------------- /Information/MeasureCircle.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/MeasureCircle.FCMacro -------------------------------------------------------------------------------- /Information/MeasureCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/MeasureCircle.png -------------------------------------------------------------------------------- /Information/SimpleProperties.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/SimpleProperties.FCMacro -------------------------------------------------------------------------------- /Information/TreeToAscii.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Information/TreeToAscii.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil.svg -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_CSVInput_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_CSVInput_Dialog.ui -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_CurvesInput_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_CurvesInput_Dialog.ui -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_DATInput_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_DATInput_Dialog.ui -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_FileLoad_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_FileLoad_Dialog.ui -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_Final_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_Final_Dialog.ui -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_Initial_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_Initial_Dialog.ui -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_Math_Functions_Box.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_Math_Functions_Box.ui -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_NACA4Digit_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_NACA4Digit_Dialog.ui -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_NACA5Digit_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_NACA5Digit_Dialog.ui -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_PointsInput_Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_PointsInput_Dialog.ui -------------------------------------------------------------------------------- /ObjectCreation/AeroFoil_UI_Files/AeroFoil_mfb_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AeroFoil_UI_Files/AeroFoil_mfb_img.gif -------------------------------------------------------------------------------- /ObjectCreation/AirfoilImportAndScale.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/AirfoilImportAndScale.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/BSpline3D.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/BSpline3D.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/BoxCreator.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/BoxCreator.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/BoxCreator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/BoxCreator.svg -------------------------------------------------------------------------------- /ObjectCreation/Draft_Circle_3_Points.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/Draft_Circle_3_Points.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/EllipseCenter2Points.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/EllipseCenter2Points.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/G3d.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/G3d.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/G3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/G3d.svg -------------------------------------------------------------------------------- /ObjectCreation/HalfHull.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/HalfHull.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/HilbertCurve.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/HilbertCurve.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/HilbertCurve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/HilbertCurve.svg -------------------------------------------------------------------------------- /ObjectCreation/HyperbolaCreater.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/HyperbolaCreater.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/Macro_FCCircularText.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/Macro_FCCircularText.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/ParabolaCreater.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/ParabolaCreater.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/ScatterObjectsOnSurface.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/ScatterObjectsOnSurface.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/ScatterObjectsOnSurface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/ScatterObjectsOnSurface.svg -------------------------------------------------------------------------------- /ObjectCreation/ScrewMaker.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/ScrewMaker.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/TimingGear.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/TimingGear.FCMacro -------------------------------------------------------------------------------- /ObjectCreation/TimingGear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/TimingGear.png -------------------------------------------------------------------------------- /ObjectCreation/boxcreator/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/boxcreator/Readme.md -------------------------------------------------------------------------------- /ObjectCreation/boxcreator/__init__.py: -------------------------------------------------------------------------------- 1 | from . import boxcreator 2 | -------------------------------------------------------------------------------- /ObjectCreation/boxcreator/boxcreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/boxcreator/boxcreator.py -------------------------------------------------------------------------------- /ObjectCreation/boxcreator/boxcreator.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/boxcreator/boxcreator.ui -------------------------------------------------------------------------------- /ObjectCreation/boxcreator/boxcreator_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/boxcreator/boxcreator_screenshot.jpg -------------------------------------------------------------------------------- /ObjectCreation/boxcreator/boxcreator_screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/boxcreator/boxcreator_screenshot2.jpg -------------------------------------------------------------------------------- /ObjectCreation/g3d/translations/g3d_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/g3d/translations/g3d_en.txt -------------------------------------------------------------------------------- /ObjectCreation/g3d/translations/g3d_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/g3d/translations/g3d_es.txt -------------------------------------------------------------------------------- /ObjectCreation/g3d/translations/g3d_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/g3d/translations/g3d_it.txt -------------------------------------------------------------------------------- /ObjectCreation/g3d/ui/g3d15.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ObjectCreation/g3d/ui/g3d15.ui -------------------------------------------------------------------------------- /ParametricObjectCreation/GeodesicDome.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ParametricObjectCreation/GeodesicDome.FCMacro -------------------------------------------------------------------------------- /ParametricObjectCreation/HoneycombSolid.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ParametricObjectCreation/HoneycombSolid.FCMacro -------------------------------------------------------------------------------- /ParametricObjectCreation/HoneycombSolid.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ParametricObjectCreation/HoneycombSolid.xpm -------------------------------------------------------------------------------- /ParametricObjectCreation/Rectellipse.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ParametricObjectCreation/Rectellipse.FCMacro -------------------------------------------------------------------------------- /ParametricObjectCreation/geodesic_dome/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ParametricObjectCreation/geodesic_dome/geodesic_dome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ParametricObjectCreation/geodesic_dome/geodesic_dome.py -------------------------------------------------------------------------------- /ParametricObjectCreation/honeycomb_solid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ParametricObjectCreation/honeycomb_solid/__init__.py -------------------------------------------------------------------------------- /ParametricObjectCreation/honeycomb_solid/honeycomb_solid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/ParametricObjectCreation/honeycomb_solid/honeycomb_solid.py -------------------------------------------------------------------------------- /PureGui/GuiResetToolbars.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/PureGui/GuiResetToolbars.FCMacro -------------------------------------------------------------------------------- /PureGui/GuiResetToolbars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/PureGui/GuiResetToolbars.svg -------------------------------------------------------------------------------- /PureGui/GuiSpacemouseRotationOff.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/PureGui/GuiSpacemouseRotationOff.FCMacro -------------------------------------------------------------------------------- /PureGui/GuiSpacemouseRotationOn.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/PureGui/GuiSpacemouseRotationOn.FCMacro -------------------------------------------------------------------------------- /PureGui/GuiSpacemouseRotationToggle.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/PureGui/GuiSpacemouseRotationToggle.FCMacro -------------------------------------------------------------------------------- /PureGui/SplitPropEditor.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/PureGui/SplitPropEditor.FCMacro -------------------------------------------------------------------------------- /PureGui/ViewRotation.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/PureGui/ViewRotation.FCMacro -------------------------------------------------------------------------------- /PureGui/ViewRotationOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/PureGui/ViewRotationOut.png -------------------------------------------------------------------------------- /PureGui/ViewRotationRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/PureGui/ViewRotationRight.png -------------------------------------------------------------------------------- /PureGui/ViewRotationUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/PureGui/ViewRotationUp.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/README.md -------------------------------------------------------------------------------- /Sketcher/SketchUnmap.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Sketcher/SketchUnmap.FCMacro -------------------------------------------------------------------------------- /Sketcher/SketchUnmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Sketcher/SketchUnmap.svg -------------------------------------------------------------------------------- /Sketcher/SketcherBlockAll.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Sketcher/SketcherBlockAll.FCMacro -------------------------------------------------------------------------------- /Sketcher/SketcherFixAllPoints.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Sketcher/SketcherFixAllPoints.FCMacro -------------------------------------------------------------------------------- /Sketcher/SketcherFixAllPoints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Sketcher/SketcherFixAllPoints.svg -------------------------------------------------------------------------------- /SolidSweep.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/SolidSweep.FCMacro -------------------------------------------------------------------------------- /Spreadsheet/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechDraw/LasercutterSVGExport.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/LasercutterSVGExport.FCMacro -------------------------------------------------------------------------------- /TechDraw/LasercutterSVGExport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/LasercutterSVGExport.svg -------------------------------------------------------------------------------- /TechDraw/LasercutterSVGExport/LasercutterSVGExport_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/LasercutterSVGExport/LasercutterSVGExport_screenshot.png -------------------------------------------------------------------------------- /TechDraw/LasercutterSVGExport/LasercutterTechdrawExport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/LasercutterSVGExport/LasercutterTechdrawExport.py -------------------------------------------------------------------------------- /TechDraw/LasercutterSVGExport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/LasercutterSVGExport/README.md -------------------------------------------------------------------------------- /TechDraw/LasercutterSVGExport/lasercuttersvg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/LasercutterSVGExport/lasercuttersvg.ui -------------------------------------------------------------------------------- /TechDraw/TechDrawAnnoTextFromv018.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/TechDrawAnnoTextFromv018.FCMacro -------------------------------------------------------------------------------- /TechDraw/TechDrawMigrateFromv018.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/TechDrawMigrateFromv018.FCMacro -------------------------------------------------------------------------------- /TechDraw/TechDrawSymbolsLibrary.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/TechDrawSymbolsLibrary.FCMacro -------------------------------------------------------------------------------- /TechDraw/TechDrawTools.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/TechDrawTools.FCMacro -------------------------------------------------------------------------------- /TechDraw/TechDrawTools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/TechDrawTools.svg -------------------------------------------------------------------------------- /TechDraw/TechDrawViewSet.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/TechDraw/TechDrawViewSet.FCMacro -------------------------------------------------------------------------------- /Utility/GroupSorting.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/GroupSorting.FCMacro -------------------------------------------------------------------------------- /Utility/GroupSorting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/GroupSorting.svg -------------------------------------------------------------------------------- /Utility/HighlightCommon.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/HighlightCommon.FCMacro -------------------------------------------------------------------------------- /Utility/HighlightCommon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/HighlightCommon.png -------------------------------------------------------------------------------- /Utility/HighlightDifference.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/HighlightDifference.FCMacro -------------------------------------------------------------------------------- /Utility/HighlightDifference.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/HighlightDifference.svg -------------------------------------------------------------------------------- /Utility/MessageBox.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/MessageBox.FCMacro -------------------------------------------------------------------------------- /Utility/PiecesTemplates.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/PiecesTemplates.FCMacro -------------------------------------------------------------------------------- /Utility/PiecesTemplates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/PiecesTemplates.svg -------------------------------------------------------------------------------- /Utility/PiecesTemplates/Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/PiecesTemplates/Groups.txt -------------------------------------------------------------------------------- /Utility/PiecesTemplates/ui/PiecesTemplates.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/PiecesTemplates/ui/PiecesTemplates.ui -------------------------------------------------------------------------------- /Utility/PlacementAbsolufy.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/PlacementAbsolufy.FCMacro -------------------------------------------------------------------------------- /Utility/SelectVisible.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/SelectVisible.FCMacro -------------------------------------------------------------------------------- /Utility/SketchAp.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/SketchAp.FCMacro -------------------------------------------------------------------------------- /Utility/SketchAp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/SketchAp.svg -------------------------------------------------------------------------------- /Utility/StraightenObject.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/StraightenObject.FCMacro -------------------------------------------------------------------------------- /Utility/Transparencies.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/Transparencies.FCMacro -------------------------------------------------------------------------------- /Utility/Transparencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/Transparencies.svg -------------------------------------------------------------------------------- /Utility/WikiObjectPropertiesListGenerator.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/WikiObjectPropertiesListGenerator.FCMacro -------------------------------------------------------------------------------- /Utility/WikiObjectPropertiesListGenerator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/WikiObjectPropertiesListGenerator.svg -------------------------------------------------------------------------------- /Utility/pcbway.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/pcbway.FCMacro -------------------------------------------------------------------------------- /Utility/treeHelper.FCMacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/treeHelper.FCMacro -------------------------------------------------------------------------------- /Utility/treeHelper/treeHelper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/treeHelper/treeHelper.svg -------------------------------------------------------------------------------- /Utility/treeHelper/ui_treewindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/Utility/treeHelper/ui_treewindow.py -------------------------------------------------------------------------------- /apothemBasedPrism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/apothemBasedPrism.py -------------------------------------------------------------------------------- /icons/Camera/FCCamera_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_00.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_01.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_02.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_03.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_04.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_05.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_06.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_07.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_08.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_Axis_rotation_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_Axis_rotation_X.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_Axis_rotation_Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_Axis_rotation_Y.png -------------------------------------------------------------------------------- /icons/Camera/FCCamera_Axis_rotation_Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/Camera/FCCamera_Axis_rotation_Z.png -------------------------------------------------------------------------------- /icons/HyperbolaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/HyperbolaIcon.png -------------------------------------------------------------------------------- /icons/MeasureCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/MeasureCircle.png -------------------------------------------------------------------------------- /icons/MeasureCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/MeasureCircle.svg -------------------------------------------------------------------------------- /icons/RotateView/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/RotateView/out.png -------------------------------------------------------------------------------- /icons/RotateView/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/RotateView/right.png -------------------------------------------------------------------------------- /icons/RotateView/right_abs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/RotateView/right_abs.png -------------------------------------------------------------------------------- /icons/RotateView/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/RotateView/up.png -------------------------------------------------------------------------------- /icons/SelectVisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/SelectVisible.png -------------------------------------------------------------------------------- /icons/SelectVisible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/icons/SelectVisible.svg -------------------------------------------------------------------------------- /makecamera2dview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/makecamera2dview.py -------------------------------------------------------------------------------- /myMacroDir/__init__.py: -------------------------------------------------------------------------------- 1 | import myMacro 2 | -------------------------------------------------------------------------------- /myMacroDir/myMacro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/HEAD/myMacroDir/myMacro.py --------------------------------------------------------------------------------