Macro Loft/de

Other languages:

Macro Loft

Beschreibung
Erzeugt ein Loft aus ausgewählten Linienzügen.

Versionsmakro : 00.04
Datum der letzten Änderung : 2019-07-03
FreeCAD version : Alle
Herunterladen : Werkzeugleistensymbol
Autor: Mario52
Autor
Mario52
Herunterladen
Werkzeugleistensymbol
Links
Macro-Version
00.04
Datum der letzten Änderung
2019-07-03
FreeCAD-Version(s)
Alle
Standardverknüpfung
None
Siehe auch
Macro Texture

Beschreibung

Speziell für einfaches Lofting mit Linien geschrieben, die mit dem Macro Texture erzeugt wurden (kann aber für gewöhnliche Lofts geeignet sein und verwendet werden)

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.githubusercontent.com/mario52a/c477f892233d6abe02df5e97af828ff4/raw/d633193c577e8257ef458b8c1824d1047c3c6613/Macro_FCCreaLoft.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.githubusercontent.com/mario52a/c477f892233d6abe02df5e97af828ff4/raw/d633193c577e8257ef458b8c1824d1047c3c6613/Macro_FCCreaLoft.FCMacro")
<class="rawcodeurl"><a href="https://gist.githubusercontent.com/mario52a/c477f892233d6abe02df5e97af828ff4/raw/d633193c577e8257ef458b8c1824d1047c3c6613/Macro_FCCreaLoft.FCMacro">raw code</a>


Texture_001_Logo

Anwendung

Das Makro und das Symbol in das Makroverzeichnis kopieren.

Die Schnittstelle

FCCreaLoft002
FCCreaLoft002

Skript

Das Symbol für die Werkzeugleiste

Laden Sie das Makro in herunter Gist Macro_FCCreaLoft.FCMacro

Links

Die Forumsdiskussion Texture

Das Macro Texture

Version

ver 00.00 : 06/02/2016

ver 00.02 : 09/02/2016 : Add button "Select all" and little option displayed in the button Launch (number selections) and (real number loft)

ver 00.03 : 09/02/2016 : minor (display on button)

ver 00.04 : 03/07/2019 : adapt to Python 3