82 lines
5.1 KiB
HTML
82 lines
5.1 KiB
HTML
<html><head><title>Draft Facebinder</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Draft Facebinder</h1></div>
|
|
|
|
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><table class="fcinfobox wikitable ct" >
|
|
<tr>
|
|
<td class="ctTitle">
|
|
<h3><span class="mw-headline" id="Draft_Facebinder"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Draft_Facebinder.png" class="image"><img alt="Draft Facebinder.png" src="32px-Draft_Facebinder.png" width="32" height="32" srcset="/wiki/images/thumb/9/93/Draft_Facebinder.png/48px-Draft_Facebinder.png 1.5x, /wiki/images/9/93/Draft_Facebinder.png 2x" /></a> Draft Facebinder</span></h3>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Menu location
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven">Draft → Facebinder
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Workbenches
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven"><a href="Draft_Module.html" title="Draft Module">Draft</a>, <a href="Arch_Module.html" title="Arch Module">Arch</a>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Default shortcut
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven">F F
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">See also
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven">None
|
|
</td></tr>
|
|
<tr>
|
|
<td class="ctToc"><br /><div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
|
|
<ul>
|
|
<li class="toclevel-1"><a href="#Draft_Facebinder"><span class="tocnumber">1</span> <span class="toctext">Draft Facebinder</span></a></li>
|
|
<li class="toclevel-1 tocsection-1"><a href="#Description"><span class="tocnumber">2</span> <span class="toctext">Description</span></a></li>
|
|
<li class="toclevel-1 tocsection-2"><a href="#How_to_use"><span class="tocnumber">3</span> <span class="toctext">How to use</span></a></li>
|
|
<li class="toclevel-1 tocsection-3"><a href="#Scripting"><span class="tocnumber">4</span> <span class="toctext">Scripting</span></a></li>
|
|
<li class="toclevel-1 tocsection-4"><a href="#Limitations"><span class="tocnumber">5</span> <span class="toctext">Limitations</span></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</td></tr></table>
|
|
<p><br />
|
|
</p>
|
|
<h2><span class="mw-headline" id="Description">Description</span></h2>
|
|
<p>The facebinder a very simple object constructed from selected faces of other objects. It is of parametric, you can modify the original object and the facebinder object updates accordingly. It can then be used for example for making an extrusion out of a collection of faces from other objects. A typical use is in architectural design, to build an object that covers several pieces of walls. You can move and rotate the facebinder around after its creation, everything will stay linked to the original faces.
|
|
</p><p><a href="https://www.freecadweb.org/wiki/index.php?title=File:Draft_facebinder_example.jpg" class="image"><img alt="Draft facebinder example.jpg" src="400px-Draft_facebinder_example.jpg" width="400" height="282" srcset="/wiki/images/thumb/0/0c/Draft_facebinder_example.jpg/600px-Draft_facebinder_example.jpg 1.5x, /wiki/images/thumb/0/0c/Draft_facebinder_example.jpg/800px-Draft_facebinder_example.jpg 2x" /></a>
|
|
</p>
|
|
<h2><span class="mw-headline" id="How_to_use">How to use</span></h2>
|
|
<ol><li> Select faces on objects (use CTRL to select several faces)</li>
|
|
<li> Press the <span style="background: #DDDDDD; border: 1px solid #888888; padding: 0px 5px 1px 5px;"> <a href="https://www.freecadweb.org/wiki/index.php?title=File:Draft_Facebinder.png" class="image"><img alt="Draft Facebinder.png" src="16px-Draft_Facebinder.png" width="16" height="16" srcset="/wiki/images/thumb/9/93/Draft_Facebinder.png/24px-Draft_Facebinder.png 1.5x, 32px-Draft_Facebinder.png 2x" /></a> <a class="mw-selflink selflink">Facebinder</a></span>, button, or press <span style="background: #DDDDDD; border: 1px solid #888888; padding: 0px 5px 1px 5px;">F</span>, <span style="background: #DDDDDD; border: 1px solid #888888; padding: 0px 5px 1px 5px;">F</span> keys</li></ol>
|
|
<h2><span class="mw-headline" id="Scripting">Scripting</span></h2>
|
|
<p>The facebinder tool can be usedin scripts and <a href="Macros.html" title="Macros">macros</a> by using the following function:
|
|
</p>
|
|
<pre>makeFacebinder ( selectionset ) </pre>
|
|
<ul><li> Creates a facebinder object from the given selection set, which is a list of selection objects such as returned by the FreeCADGui.Selection.getSelectionEx() method.</li>
|
|
<li> Only selected faces are taken into account</li>
|
|
<li> Returns the newly created object</li></ul>
|
|
<p>Example:
|
|
</p>
|
|
<pre>import Draft, FreeCADGui
|
|
mySelection = FreeCADGui.Selection.getSelectionEx()
|
|
Draft.makeFacebinder(mySelection) </pre>
|
|
<h2><span class="mw-headline" id="Limitations">Limitations</span></h2>
|
|
<ul><li> Not available before version 0.14</li></ul>
|
|
<div style="clear:both"></div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div><div class="printfooter">
|
|
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Draft_Facebinder&oldid=135693">http://www.freecadweb.org/wiki/index.php?title=Draft_Facebinder&oldid=135693</a>"</div>
|
|
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
|
|
</div>
|
|
</div>
|
|
<div id="mw-navigation">
|
|
<h2>Navigation menu</h2>
|
|
|
|
</body></html> |