Macro Connect And Sweep: Difference between revisions

From FreeCAD Documentation
m (<br/>)
mNo edit summary
Line 9: Line 9:
|Date=2019-06-18
|Date=2019-06-18
|FCVersion=All
|FCVersion=All
|Download=[https://www.freecadweb.org/wiki/images/c/c9/Macro_Connect_And_Sweep.png ToolBar Icon]<br/>[https://www.freecadweb.org/wiki/images/a/a8/Macro_Connect_And_Sweep_CE.png Macro_Connect_And_Sweep_CE]<br/>[https://www.freecadweb.org/wiki/images/f/f7/Macro_Connect_And_Sweep_TL.png Macro_Connect_And_Sweep_TL]<br/>[https://www.freecadweb.org/wiki/images/b/b7/Macro_Connect_And_Sweep_TR.png Macro_Connect_And_Sweep_TR]<br/>[https://www.freecadweb.org/wiki/images/5/5d/Macro_Connect_And_Sweep_LL.png Macro_Connect_And_Sweep_LL]<br/>
|Download=[https://www.freecadweb.org/wiki/images/c/c9/Macro_Connect_And_Sweep.png ToolBar Icon]<br/>
[https://www.freecadweb.org/wiki/images/a/a8/Macro_Connect_And_Sweep_CE.png Macro_Connect_And_Sweep_CE]<br/>
[https://www.freecadweb.org/wiki/images/f/f7/Macro_Connect_And_Sweep_TL.png Macro_Connect_And_Sweep_TL]<br/>
[https://www.freecadweb.org/wiki/images/b/b7/Macro_Connect_And_Sweep_TR.png Macro_Connect_And_Sweep_TR]<br/>
[https://www.freecadweb.org/wiki/images/5/5d/Macro_Connect_And_Sweep_LL.png Macro_Connect_And_Sweep_LL]<br/>
[https://www.freecadweb.org/wiki/images/b/b9/Macro_Connect_And_Sweep_LR.png Macro_Connect_And_Sweep_LR]
[https://www.freecadweb.org/wiki/images/b/b9/Macro_Connect_And_Sweep_LR.png Macro_Connect_And_Sweep_LR]
}}
}}

Revision as of 11:50, 18 June 2019

Other languages:

Macro Connect And Sweep

Description
This macro easily creates a connection between two objects, an object and a point or between two points (the center of the objects are the starting and ending points of the sweep) can be selected form a configurable ellipse polygon circle.

Macro version: 00.06
Last modified: 2019-06-18
FreeCAD version: All
Download: ToolBar Icon
Macro_Connect_And_Sweep_CE
Macro_Connect_And_Sweep_TL
Macro_Connect_And_Sweep_TR
Macro_Connect_And_Sweep_LL

Macro_Connect_And_Sweep_LR
Author: Mario52

Author
Mario52
Download
ToolBar Icon
Macro_Connect_And_Sweep_CE
Macro_Connect_And_Sweep_TL
Macro_Connect_And_Sweep_TR
Macro_Connect_And_Sweep_LL

Macro_Connect_And_Sweep_LR

Links
Macro Version
00.06
Date last modified
2019-06-18
FreeCAD Version(s)
All
Default shortcut
None
See also
None

Description

This macro easily creates a connection between two objects, an object and a point or between two points (the center of the objects are the starting and ending points of the sweep) can be selected form a configurable ellipse polygon circle.

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/3ec67a3711202dab69592ce53b938924/raw/a7b2c3ba3cac6ef0fb4925a0def5e2d11d3eb06a/Macro_Connect_And_Sweep.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/3ec67a3711202dab69592ce53b938924/raw/a7b2c3ba3cac6ef0fb4925a0def5e2d11d3eb06a/Macro_Connect_And_Sweep.FCMacro")


Macro_Connect_And_Sweep

Use

Run the macro select your objects or points choice the form and parameters and click Create.

Macro_Connect_And_Sweep

Images

These files must be copied to your macros directory

(For download : Click Right button op the image and click "Save Image as ...")

Center Top left Top rigth Low left Low rigth

The icon for the toolbar Icon for the button

Script

Macro_Connect_And_Sweep.FCMacro

Download the macro to Gits Macro_Connect_And_Sweep.FCMacro

Example

Path and tubing with Macro_Connect_And_Sweep and Macro_Repro_Wire


Version

06 18/06/2019 : adding "Recompute" on create line section

05 05/04/2019 : compatible Python 3

00.04 22/02/2017 : upgrade the search path

00.03 15/09/2016 : add create pipe

00.02 13/06/2016 : add options choice angle path rectangle and ellipse

00.01 07/06/2016 : add option solid or not centring rectangle or not

00.00 05/06/2016 :

Links

The forum discussion Scripting point to point tubing

This macro is based to the microelly2 code see Looking for some helpful GUI-commands

Other forum discussion Macro_Connect_And_Sweep