Macro Apothem Based Prism GUI/it: Difference between revisions

From FreeCAD Documentation
(Created page with "=== Descrizione ===")
(Created page with "Questa macro apre una finestra di dialogo per fornire la distanza tra i centri, il numero di lati, altezza e crea un prisma basato sull'apotema o raggio del cerchio inscritto ...")
Line 3: Line 3:
=== Descrizione ===
=== Descrizione ===


Questa macro apre una finestra di dialogo per fornire la distanza tra i centri, il numero di lati, altezza e crea un prisma basato sull'apotema o raggio del cerchio inscritto in un poligono regolare. Essa può essere estremamente utile quando si conosce solo la distanza tra le facce. Per esempio, questi oggetti possono essere i contenitori esagonali di plastica o di metallo offerti dai fornitori. La maggior parte dei fornitori definisce le caratteristiche di questi prodotti indicando la distanza tra le facce. Se questi contenitori sono usati nei progetti, la macro può consentire un notevole risparmio di tempo.
This macro will present the user with a dialog to provide the distance between centers, the number of sides, and height and will create a prism based on the apothem, or inradius of a polygon. This can be extremely handy when one only knows the distance between flats. An example of this would be hexagonal stock of plastics or metal provided by vendors. Most vendors define such stock by the distance between flats. If one is using such stock in their projects, this Macro can be a real time saver.


== How To Use ==
== How To Use ==

Revision as of 19:52, 25 October 2014

File:Part Prism Apothem Apothem Based Prism

Descrizione
Interfaccia grafica per creare un prisma basato sull'apotema (inraggio)inserita dall'utente.

Autore: Quick61
Autore
Quick61
Download
None
Link
Versione macro
1.0
Data ultima modifica
None
Versioni di FreeCAD
None
Scorciatoia
Nessuna
Vedere anche
Nessuno

Apothem Based Prism

Descrizione

Questa macro apre una finestra di dialogo per fornire la distanza tra i centri, il numero di lati, altezza e crea un prisma basato sull'apotema o raggio del cerchio inscritto in un poligono regolare. Essa può essere estremamente utile quando si conosce solo la distanza tra le facce. Per esempio, questi oggetti possono essere i contenitori esagonali di plastica o di metallo offerti dai fornitori. La maggior parte dei fornitori definisce le caratteristiche di questi prodotti indicando la distanza tra le facce. Se questi contenitori sono usati nei progetti, la macro può consentire un notevole risparmio di tempo.

How To Use

Copy the Macro into your FreeCAD Macro directory. Then either run the macro from the Execute Macro dialog or create a shortcut to use from your custom toolbar.

When run, the Macro wil present the user with a dialog like seen below. First enter the desired distance between flats. This can be any number and can include a decimal value, it will not take fractional input. Next enter the number of sides. This number is a whole number and should be an even number as well for proper results. Lastly enter the height you wish the prism to be. Again, this can be any number and can include a decimal value. Click OK and the prism will be created in your document.

The Macro

# # # # # # # # # # #
#
# Apothem Based Prism
#
# This script will take the input of the distance between flats, (apothem, aka inradius), 
# and the number of sidesfor a regular polygon along with a height and produce a 
# correctly sized prism derived from the circumradius.
#
# # # # # # # # # # #

import FreeCAD, FreeCADGui, Part, PartGui, math
from FreeCAD import Base
from PySide import QtGui, QtCore
from math import cos, radians
App = FreeCAD
Gui = FreeCADGui

class p():


def priSm(self):

try:
dbf = float(self.d1.text())
nos = int(self.d2.text())
hth = float(self.d3.text())
aR = dbf / 2
op1 = 180/float(nos)
coS = cos(math.radians(op1))
cR = aR / coS
prism=App.ActiveDocument.addObject("Part::Prism","Prism")
prism.Polygon=nos
prism.Circumradius=cR
prism.Height=hth
prism.Placement=Base.Placement(Base.Vector(0.00,0.00,0.00),Base.Rotation(0.00,0.00,0.00,1.00))
prism.Label='Prism'
App.ActiveDocument.recompute()
Gui.SendMsgToActiveView("ViewFit")
except:
FreeCAD.Console.PrintError("Unable to complete task")

self.close()

def close(self):
self.dialog.hide()


#
# Make dialog box and get input for distance between flats, number of sides, and height
#

def __init__(self):
self.dialog = None

self.dialog = QtGui.QDialog()
self.dialog.resize(280,110)

self.dialog.setWindowTitle("Apothem Based Prism")
la = QtGui.QVBoxLayout(self.dialog)

iN1 = QtGui.QLabel("Distance Between Flats")
la.addWidget(iN1)
self.d1 = QtGui.QLineEdit()
la.addWidget(self.d1)

iN2 = QtGui.QLabel("Number Of Sides (Best results - use even numbers)")
la.addWidget(iN2)
self.d2 = QtGui.QLineEdit()
la.addWidget(self.d2)

iN3 = QtGui.QLabel("Prism Height")
la.addWidget(iN3)
self.d3 = QtGui.QLineEdit()
la.addWidget(self.d3)

okbox = QtGui.QDialogButtonBox(self.dialog)
okbox.setOrientation(QtCore.Qt.Horizontal)
okbox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
la.addWidget(okbox)
QtCore.QObject.connect(okbox, QtCore.SIGNAL("accepted()"), self.priSm)
QtCore.QObject.connect(okbox, QtCore.SIGNAL("rejected()"), self.close)
QtCore.QMetaObject.connectSlotsByName(self.dialog)
self.dialog.show()
self.dialog.exec_()

p()

Additions

SVG icon for use in custom toolbar shortcut.

Acknowledgements

A thanks to FreeCAD main developer shoogen and FreeCAD programmer wandererfan for their invaluable help and advice in constructing this Macro.

Other languages: