240 lines
8.2 KiB
HTML
240 lines
8.2 KiB
HTML
<html><head><title>Macro Corner shapes wizard/update/fr</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/fr</h1></div>
|
|
|
|
<div id="mw-content-text" lang="fr" 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="Corner_shapes_wizard"><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> Corner shapes wizard</span></h3>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Description
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven left">Cette macro est une application complète, il ouvre une boîte de dialogue demandant les dimensions angulaires de votre pièce, puis crée l'objet dans le document, et, crée une page avec les vues, de dessus, de face et latérale de la pièce.
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Auteur
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=User:Nicotuf&action=edit&redlink=1" class="new" title="User:Nicotuf (page does not exist)">Nicotuf</a>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Liens
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=Macros_recipes/fr" title="Macros recipes/fr">Recettes macros</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=How_to_install_macros/fr" title="How to install macros/fr">Comment installer une macro</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=Customize_Toolbars/fr" title="Customize Toolbars/fr">Comment ajouter une barre d'outils</a>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Version
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven macro-version">1.0
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Date dernière modification
|
|
</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="#Corner_shapes_wizard"><span class="tocnumber">1</span> <span class="toctext">Corner shapes wizard</span></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</td></tr>
|
|
</table>
|
|
<p><br />
|
|
</p><p><br />
|
|
This macro is a complete application, it pops up a dialog asking for the dimensions of your corner piece, then creates the object in the document and creates a page view with top, front and lateral views of the piece. Original source: <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/fr&oldid=82917">http://www.freecadweb.org/wiki/index.php?title=Macro_Corner_shapes_wizard/update/fr&oldid=82917</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> |