Macro EasyReflector: Difference between revisions

From FreeCAD Documentation
(v0.2023.09.05)
(Fix images.)
Line 21: Line 21:


</translate>
</translate>
[[Image:EasyReflector_screenshot01.png]]
<translate>
<translate>
{{Caption|Macro Animator screenshot‎}}
{{Caption|Macro Animator screenshot‎}}
Line 32: Line 33:
ToolBar Icon
ToolBar Icon
</translate>
</translate>
[[Image:EasyReflector_screenshot01.png]]
[[Image:EasyReflectorIcon.svg]]
<translate>
<translate>



Revision as of 14:44, 5 September 2023

Other languages:

Macro EasyReflector

Description
Easily manage textures with this feature Python object

Macro version: 0.2023.09.05
Last modified: 2022-09-05
FreeCAD version: Python 3 versions
Download: ToolBar Icon
Author: TheMarkster
Author
TheMarkster
Download
ToolBar Icon
Links
Macro Version
0.2023.09.05
Date last modified
2022-09-05
FreeCAD Version(s)
Python 3 versions
Default shortcut
None
See also
None

Description

EasyReflector makes it easy to manage textures in FreeCAD. It creates a feature python object that persists when the document is reloaded. Select from a variety of included textures, or use your own images.

Full documentation can be found on github: EasyReflector.

Macro Animator screenshot‎

Legend

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/08b4118d8737a15671b0cbee686a824de55e4cf0/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/08b4118d8737a15671b0cbee686a824de55e4cf0/EasyReflector.FCMacro")


ToolBar Icon

Script

Macro EasyReflector.FCMacro