Macro EasyReflector: Difference between revisions

From FreeCAD Documentation
m (0.2023.11.07)
m (0.2023.12.08)
Line 8: Line 8:
|Description=Easily manage textures with this Feature Python object
|Description=Easily manage textures with this Feature Python object
|Author=TheMarkster
|Author=TheMarkster
|Version=0.2023.11.07
|Version=0.2023.12.08
|Date=2023-11-07
|Date=2023-12-08
|FCVersion=Python 3 versions
|FCVersion=Python 3 versions
|Download=[https://wiki.freecadweb.org/File:EasyReflectorIcon.svg ToolBar Icon]
|Download=[https://wiki.freecadweb.org/File:EasyReflectorIcon.svg ToolBar Icon]
Line 32: Line 32:


</translate>
</translate>
{{Codeextralink|https://gist.github.com/mwganson/aea3c51981c0b994cfd961cf4db56b50/raw/6110ebc3d6bcf6c7254393e340a7a97fe2310971/EasyReflector.FCMacro|EasyReflector.FCMacro}}
{{Codeextralink|https://gist.github.com/mwganson/aea3c51981c0b994cfd961cf4db56b50/raw/03c09d6f530206e570eca360a63e16d35b56d850/EasyReflector.FCMacro|EasyReflector.FCMacro}}
<translate>
<translate>



Revision as of 01:55, 9 December 2023

Other languages:

Macro EasyReflector

Description
Easily manage textures with this Feature Python object

Macro version: 0.2023.12.08
Last modified: 2023-12-08
FreeCAD version: Python 3 versions
Download: ToolBar Icon
Author: TheMarkster
Author
TheMarkster
Download
ToolBar Icon
Links
Macro Version
0.2023.12.08
Date last modified
2023-12-08
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 EasyReflector 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/03c09d6f530206e570eca360a63e16d35b56d850/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/03c09d6f530206e570eca360a63e16d35b56d850/EasyReflector.FCMacro")


ToolBar Icon

Script

Macro EasyReflector.FCMacro