FreeCAD-Doc/localwiki/Macro_Align_Face_Object_to_View.html
2018-07-08 12:11:49 -05:00

101 lines
4.4 KiB
HTML

<html><head><title>Macro Align Face Object to View</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Macro Align Face Object to View</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" width="100%" style="float: right; width: 230px; margin-left: 10px;">
<tr>
<td class="ctTitle">
<h3><span class="mw-headline" id="Macro_Align_Face_Object_to_View"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Text-x-python.png" class="image"><img alt="Text-x-python.png" src="32px-Text-x-python.png" width="32" height="32" srcset="/wiki/images/2/2c/Text-x-python.png 1.5x" /></a> Macro Align Face Object to View</span></h3>
</td></tr>
<tr>
<th class="ctOdd">Description
</th></tr>
<tr>
<td class="ctEven left macro-description">This macro directs the face of the object on the side of the ActiveView.
</td></tr>
<tr>
<th class="ctOdd">Author
</th></tr>
<tr>
<td class="ctEven macro-author"><a href="https://www.freecadweb.org/wiki/index.php?title=User:Mario52" title="User:Mario52">Mario52</a>
</td></tr>
<tr>
<th class="ctOdd">Links
</th></tr>
<tr>
<td class="ctEven"><a href="Macros_recipes.html" title="Macros recipes">Macros recipes</a><br /><a href="How_to_install_macros.html" title="How to install macros">How to install macros</a><br /><a href="Customize_Toolbars.html" title="Customize Toolbars">How to customize toolbars</a>
</td></tr>
<tr>
<th class="ctOdd">Version
</th></tr>
<tr>
<td class="ctEven macro-version">0.1
</td></tr>
<tr>
<th class="ctOdd">Date last modification
</th></tr>
<tr>
<td class="ctEven macro-date">2015-01-16
</td></tr>
<tr>
<th class="ctOdd">
</th></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="#Macro_Align_Face_Object_to_View"><span class="tocnumber">1</span> <span class="toctext">Macro Align Face Object to View</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="#Script"><span class="tocnumber">4</span> <span class="toctext">Script</span></a></li>
<li class="toclevel-1 tocsection-4"><a href="#Links"><span class="tocnumber">5</span> <span class="toctext">Links</span></a></li>
</ul>
</div>
</td></tr>
</table>
<p><br />
</p>
<h2><span class="mw-headline" id="Description">Description</span></h2>
<p>This macro directs the face of the object on the side of the ActiveView (camera).
In the case of the face of a borehole (or internal or cylinder) face drilling facing the screen
</p>
<h2><span class="mw-headline" id="How_to_use">How to use</span></h2>
<ul><li> Select your object and run the macro</li>
<li> Your object will be of the camera</li></ul>
<h2><span class="mw-headline" id="Script">Script</span></h2>
<p><b>Macro_Align_Face_Object_to_View.FCMacro</b>
</p>
<pre># This macro directs the face of the object on the side of the ActiveView (camera)
# extact
# 16/01/2015
__title__="FCCamera"
__author__ = "Mario52"
import pivy
from pivy import coin
try:
v=Gui.Selection.getSelectionEx()[0].SubObjects[0].Surface.Axis # to Axis
# v = Gui.Selection.getSelectionEx()[0].SubObjects[0].normalAt(0,0) # normalAt
r=App.Rotation(App.Vector(0,0,1),v)
Gui.ActiveDocument.ActiveView.setCameraOrientation(r.Q)
except Exception:
App.Console.PrintError("Select a face and run the macro"+"\n") </pre>
<h2><span class="mw-headline" id="Links">Links</span></h2>
<p>Original macro by wmayer <a rel="nofollow" class="external text" href="http://forum.freecadweb.org/viewtopic.php?f=3&amp;t=7029&amp;p=56735&amp;hilit=Shape.Face4#p56735">Looking for some helpful GUI-commands</a>
</p>
<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=Macro_Align_Face_Object_to_View&amp;oldid=239895">http://www.freecadweb.org/wiki/index.php?title=Macro_Align_Face_Object_to_View&amp;oldid=239895</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>