Description |
---|
Texturen auf einfache Art verwalten mit diesem Feature-Python-Objekt Macro version: 0.2023.12.09 Last modified: 2023-12-09 FreeCAD version: Versionen auf Basis von Python 3 Download: Werkzeugleistensymbol Author: TheMarkster |
Author |
TheMarkster |
Download |
Werkzeugleistensymbol |
Links |
Full Documentation on Github Macros recipes How to install macros How to customize toolbars |
Macro Version |
0.2023.12.09 |
Date last modified |
2023-12-09 |
FreeCAD Version(s) |
Versionen auf Basis von Python 3 |
Default shortcut |
None |
See also |
None |
EasyReflector erleichtert den Umgang mit Texturen in FreeCAD. Es erstellt ein Feature-Python-Objekt, dass bestehen bleibt, wenn ein Dokument erneut geladen wird. Es stehen einige mitgelieferte Texturen zur Auswahl; alternativ können eigene Bilder verwendet werden.
Die vollständige Beschreibung befindet sich auf github: EasyReflector.
Makro EasyReflector, Bildschirmfoto
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://gist.github.com/mwganson/aea3c51981c0b994cfd961cf4db56b50/raw/71b325b7c1568e2460beb099f553225a5516fc44/EasyReflector.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://gist.github.com/mwganson/aea3c51981c0b994cfd961cf4db56b50/raw/71b325b7c1568e2460beb099f553225a5516fc44/EasyReflector.FCMacro")
Macro EasyReflector.FCMacro