Macro Move Assembly/fr

Generic macro icon Macro Move Assembly

Description
Cette macro permet de créer un panneau de commande permettant de déplacer l'assemblage par incréments.

Version macro : 0.4
Date dernière modification : 2026-05-26
Auteur: onekk
Auteur
onekk
Téléchargement
Liens
Version Macro
0.4
Dernière modification
2026-05-26
Version(s) FreeCAD
None
Raccourci clavier
None
Voir aussi
None

Description

Cette macro permet de créer un « panneau de commande » permettant de déplacer chaque liaison de l'assemblage indépendamment, par pas.

Utilisation

Vous trouverez de la documentation ici :

https://codeberg.org/onekk/freecad-macro/src/branch/main/assembly_move/README.md

Ou dans le fil de discussion dédié sur le forum :

https://forum.freecad.org/viewtopic.php?t=105451

Script

assembly_move.FCMacro

Temporary code for external macro link. Do not use this code. This code is used exclusively by Addon Manager. Link for optional manual installation: Macro


# This code is copied instead of the original macro code
# to guide the user to the online download page.
# Use it if the code of the macro is larger than 64 KB and cannot be included in the wiki
# or if the RAW code URL is somewhere else in the wiki.

from PySide import QtGui, QtCore

diag = QtGui.QMessageBox(QtGui.QMessageBox.Information,
    "Information",
    "This macro must be downloaded from this link\n"
    "\n"
    "https://codeberg.org/onekk/freecad-macro/raw/branch/main/assembly_move/assembly_move.FCMacro" + "\n"
    "\n"
    "Quit this window to access the download page")

diag.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint)
diag.setWindowModality(QtCore.Qt.ApplicationModal)
diag.exec_()

import webbrowser 
webbrowser.open("https://codeberg.org/onekk/freecad-macro/raw/branch/main/assembly_move/assembly_move.FCMacro")