FreeCAD-Doc/localwiki/Macro_Corner_shapes_wizard-update-it.html
2018-07-19 18:47:02 -05:00

240 lines
8.2 KiB
HTML

<html><head><title>Macro Corner shapes wizard/update/it</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 Corner shapes wizard/update/it</h1></div>
<div id="mw-content-text" lang="it" dir="ltr" class="mw-content-ltr"><hr/><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="Angolare_2"><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> Angolare 2</span></h3>
</td></tr>
<tr>
<th class="ctOdd">Descrizione
</th></tr>
<tr>
<td class="ctEven left">Questa macro è un'applicazione completa che apre una finestra di dialogo per dimensionare pezzi angolari, quindi crea l'oggetto nel documento e crea una pagina con la vista superiore, frontale e laterale del pezzo.
</td></tr>
<tr>
<th class="ctOdd">Autore
</th></tr>
<tr>
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=User:Nicotuf&amp;action=edit&amp;redlink=1" class="new" title="User:Nicotuf (page does not exist)">Nicotuf</a>
</td></tr>
<tr>
<th class="ctOdd">Link
</th></tr>
<tr>
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=Macros_recipes/it" title="Macros recipes/it">Esempi di macro</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=How_to_install_macros/it" title="How to install macros/it">Come installare le Macro</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=Customize_Toolbars/it" title="Customize Toolbars/it">Personalizzare la barra degli strumenti</a>
</td></tr>
<tr>
<th class="ctOdd">Versione
</th></tr>
<tr>
<td class="ctEven macro-version">2.0 10.03.2013
</td></tr>
<tr>
<th class="ctOdd">Data ultima modifica
</th></tr>
<tr>
<td class="ctEven macro-date">YYYY-MM-DD
</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="#Angolare_2"><span class="tocnumber">1</span> <span class="toctext">Angolare 2</span></a></li>
</ul>
</div>
</td></tr>
</table>
<p><br />
</p><p><br />
Questa macro è un'applicazione completa che apre una finestra di dialogo per dimensionare pezzi angolari, quindi crea l'oggetto nel documento e crea una pagina con la vista superiore, frontale e laterale del pezzo. Versione originale: <a href="Macro_Corner_shapes_wizard.html" title="Macro Corner shapes wizard">Macro Corner shapes wizard</a>
</p><p><br />
Macro Corner shapes wizard/update
</p>
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre># Corner Shape Wizard
# http://www.freecadweb.org/wiki/index.php?title=Macro_Corner_shapes_wizard/update
# Version 10.03.2013
# Modifications: Neondata, Rainer Nase
# original source: http://www.freecadweb.org/wiki/index.php?title=Macro_Corner_shapes_wizard
# -*- coding:utf-8 -*-
#
# output to page file commented out ?
#####################################
# import external functions
#from os import *
import FreeCAD as App, FreeCADGui as Gui, Part, Draft, math, MeshPart, Mesh, Drawing
from PyQt4 import QtGui,QtCore
from FreeCAD import Base
App=FreeCAD
Gui=FreeCADGui
##################################
# Class definition
class CornerSteel:
def __init__(self, obj):
obj.addProperty("App::PropertyLength","L1","CornerSteel","Width_1").L1=20.0
obj.addProperty("App::PropertyLength","L2","CornerSteel","Width_2").L2=20.0
obj.addProperty("App::PropertyLength","e1","CornerSteel","Thickness").e1=2.0
#obj.addProperty("App::PropertyLength","e2","CornerSteel","Thickness2").e2=2.0
obj.addProperty("App::PropertyLength","Length","CornerSteel","Length").Length=200.0
obj.Proxy = self
def execute(self, fp):
P1=Base.Vector(fp.e1,fp.e1,0)
S1=Part.makeBox(fp.L1,fp.L2,fp.Length)
S2=Part.makeBox(fp.L1-fp.e1,fp.L2-fp.e1,fp.Length,P1)
fp.Shape=S1.cut(S2)
##################################
# definition of local functions :
def proceed():
QtGui.qApp.setOverrideCursor(QtCore.Qt.WaitCursor)
if App.ActiveDocument==None:
App.newDocument("CornerSteel")
oldDocumentObjects=App.ActiveDocument.Objects
try:
QL1 = float(l[0].text())
QL2 = float(l[1].text())
Qe = float(l[2].text())
QLength = float(l[3].text())
except:
App.Console.PrintError("Wrong input! Only numbers allowed...\n")
Cor=App.ActiveDocument.addObject("Part::FeaturePython","CornerSteel")
CornerSteel(Cor)
Cor.ViewObject.Proxy=0
Cor.L1 = QL1
Cor.L2 = QL2
Cor.e1 = Qe
Cor.Length=QLength
App.ActiveDocument.recompute()
Gui.SendMsgToActiveView("ViewFit")
QtGui.qApp.restoreOverrideCursor()
Drawing(Cor)
dialog.hide()
def hide():
dialog.hide()
def Drawing(obj):
ObjetProjete=obj.Shape
DimX=ObjetProjete.BoundBox.XLength
DimY=ObjetProjete.BoundBox.YLength
DimZ=ObjetProjete.BoundBox.ZLength
page = App.activeDocument().addObject('Drawing::FeaturePage','Page')
page.Template = App.getResourceDir()+'Mod/Drawing/Templates/A3_Landscape.svg'
ProfileView = App.activeDocument().addObject('Drawing::FeatureViewPart','ProfileView')
ProfileView.Source = obj
ProfileView.Direction = (0.0,0.0,1.0)
ProfileView.Scale = 1.0
ProfileView.X = 50.0
ProfileView.Y = 50.0
page.addObject(ProfileView)
LeftView = App.activeDocument().addObject('Drawing::FeatureViewPart','LeftView')
LeftView.Source = obj
LeftView.Direction = (-1.0,0.0,0.0)
LeftView.ShowHiddenLines = True
LeftView.Scale = 1.0
LeftView.Rotation = 180.0
LeftView.X = 50.0+DimX/2+DimX
LeftView.Y = 50.0
page.addObject(LeftView)
TopView = App.activeDocument().addObject('Drawing::FeatureViewPart','TopView')
TopView.Source = obj
TopView.Direction = (0.0,-1.0,0.0)
TopView.ShowHiddenLines = True
TopView.Scale = 1.0
TopView.Rotation = 180.0
TopView.X = 50.0+DimX/2+DimX
TopView.Y = 50.0+DimX/2+DimY+DimX
page.addObject(TopView)
IsoView = App.activeDocument().addObject('Drawing::FeatureViewPart','IsoView')
IsoView.Source = obj
IsoView.Direction = (-1.0,-1.0,0.5)
IsoView.Scale = 1.0
IsoView.ShowSmoothLines = True
IsoView.X = DimZ+DimX/2
IsoView.Y = 7*DimZ+3*DimY
page.addObject(IsoView)
App.activeDocument().recompute()
# PageFile = open(page.PageResult,'r')
# OutFile = open('temp.svg','w')
# OutFile.write(PageFile.read())
# del OutFile,PageFile
l = [] # Array to transfer parameters to the process
F = [ ["Width first side" , "20."] ]
F.append(["Width second side" , "10."])
F.append(["Thickness" , "3."])
F.append(["Length" , "100."])
dialog = QtGui.QDialog()
dialog.resize(200,200)
dialog.setWindowTitle("Angle profile (angle steel)")
la = QtGui.QVBoxLayout(dialog)
# adding the input fields to the GUI
for field in range(len(F)):
la.addWidget(QtGui.QLabel(F[field][0]))
l.append( QtGui.QLineEdit(F[field][1]) )
la.addWidget(l[field])
e1 = QtGui.QLabel("Dimensions of the corner profile")
commentFont=QtGui.QFont("Arial",10,True)
e1.setFont(commentFont)
la.addWidget(e1)
okbox = QtGui.QDialogButtonBox(dialog)
okbox.setOrientation(QtCore.Qt.Horizontal)
okbox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
la.addWidget(okbox)
QtCore.QObject.connect(okbox, QtCore.SIGNAL("accepted()"), proceed)
QtCore.QObject.connect(okbox, QtCore.SIGNAL("rejected()"), hide)
QtCore.QMetaObject.connectSlotsByName(dialog)
dialog.show()</pre></div>
</div>
</div>
</div><div class="printfooter">
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Macro_Corner_shapes_wizard/update/it&amp;oldid=218575">http://www.freecadweb.org/wiki/index.php?title=Macro_Corner_shapes_wizard/update/it&amp;oldid=218575</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>