Macro EasyReflector: Difference between revisions

From FreeCAD Documentation
(create EasyReflector macro page)
 
(version 0.2023.09.04c)
Line 7: Line 7:
|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.09.04b
|Version=0.2023.09.04c
|Date=2022-09-04
|Date=2022-09-04
|FCVersion=Python 3 versions
|FCVersion=Python 3 versions
Line 27: Line 27:


</translate>
</translate>
{{Codeextralink|https://gist.github.com/mwganson/aea3c51981c0b994cfd961cf4db56b50/raw/81c57113f52a81650f023b6779595b022498e541/EasyReflector.FCMacro|EasyReflector.FCMacro}}
{{Codeextralink|https://gist.github.com/mwganson/aea3c51981c0b994cfd961cf4db56b50/raw/b526a98d6cb50331f6465511d343903a876f8f6e/EasyReflector.FCMacro|EasyReflector.FCMacro}}
<translate>
<translate>



Revision as of 19:58, 4 September 2023

Other languages:

Macro EasyReflector

Description
Easily manage textures with this feature Python object

Macro version: 0.2023.09.04c
Last modified: 2022-09-04
FreeCAD version: Python 3 versions
Download: ToolBar Icon
Author: TheMarkster
Author
TheMarkster
Download
ToolBar Icon
Links
Macro Version
0.2023.09.04c
Date last modified
2022-09-04
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/b526a98d6cb50331f6465511d343903a876f8f6e/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/b526a98d6cb50331f6465511d343903a876f8f6e/EasyReflector.FCMacro")


ToolBar Icon

Script

Macro EasyReflector.FCMacro