Beschreibung |
---|
Draft Befehlssatz in einem kleinen Makro für das 2D-Linienzug-Beispiel: Funktioniert mit DXF-Dateien. DAs Makro erkennt: Linien, Bögen, Kreise, Ellipsen, BSplineKurven und reproduziert die DXF-Linienzüge als Draft-Objekte. Der Text wird in ShapeString umgewandelt. Versionsmakro : 00.05 Datum der letzten Änderung : 2024-11-11 FreeCAD version : 0.21.2 und neuer Herunterladen : Werkzeugleisten-Symbol Autor: Mario52 |
Autor |
Mario52 |
Herunterladen |
Werkzeugleisten-Symbol |
Links |
Makros Rezepte Wie man Makros installiert Symbolleisten anpassen |
Macro-Version |
00.05 |
Datum der letzten Änderung |
2024-11-11 |
FreeCAD-Version(s) |
0.21.2 und neuer |
Standardverknüpfung |
None |
Siehe auch |
None |
Draft command set in a small macro for the 2D wire example: work with the DXF files. The macro detected : Line, Arc, Circle, Ellipse, BSplineCurve and reproduce the DXF wire in a Draft object. The text is converted in ShapeString.
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/7be361a8c489deec918f664fdcfc4394/raw/2d12268123cbd38a3fba10fff1c7f35837cd3325/Macro_Compound_Plus.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/7be361a8c489deec918f664fdcfc4394/raw/2d12268123cbd38a3fba10fff1c7f35837cd3325/Macro_Compound_Plus.FCMacro")
If the object line, arc or circle is not reconized (as form in a volume 3D object), this section force the creation of Line, Arc or Circle.
Es wird keine Überprüfung durchgeführt. Dieser Abschnitt dient dazu, anhand der bereitgestellten Daten eine gewünschte 2D-Form (Entwurf) zu erstellen.
Das Symbol für die Werkzeugleiste . In das gleiche Verzeichnis wie das Makro kopieren.
The script to github Macro_Compound_Plus.FCMacro
Meine Makros unter GitHub