EM FHPort/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>


<div class="mw-translate-fuzzy">
{{GuiCommand/it
{{GuiCommand/it
|Name=EM FHPort
|Name=EM FHPort
Line 10: Line 11:
|Version=0.17
|Version=0.17
}}
}}
</div>


==Descrizione==
==Descrizione==
Line 22: Line 24:
The FHPort object is based on the two existing FHNodes between which it will create a FastHenry port.
The FHPort object is based on the two existing FHNodes between which it will create a FastHenry port.


# Select two [[EM_FHNode|FHNode]] objects
# Select two [[Image:EM_FHNode.svg|24px]] [[EM_FHNode|FHNode]] objects
# Press the {{Button|[[Image:EM_FHPort.svg|16px]] [[EM_FHPort|EM FHPort]]}} button, or press {{KEY|E}} then {{KEY|P}} keys.
# Press the {{Button|[[Image:EM_FHPort.svg|16px]] [[EM_FHPort|EM FHPort]]}} button, or press {{KEY|E}} then {{KEY|P}} keys.



Revision as of 20:54, 12 March 2020

Other languages:

EM FHPort

Posizione nel menu
EM → FHPort
Ambiente
EM (add-on)
Avvio veloce
E P
Introdotto nella versione
0.17
Vedere anche
EM FHNode, EM FHSegment, EM FHPath, EM FHPlane, EM FHEquiv,

Descrizione

The FHPort tool creates a FastHenry port between two FHNode objects.

FastHenry FHPort

Usage

The FHPort object is based on the two existing FHNodes between which it will create a FastHenry port.

  1. Select two FHNode objects
  2. Press the EM FHPort button, or press E then P keys.

Remarks:

  • The first node you select is the positive node of the port, and the arrow that is the shape of the FHPort object will point in this direction.

Properties

  • DatiNodePos: the positive FHNode of the FastHenry port
  • DatiNodeNeg: the negative FHNode of the FastHenry port

Scripting

See also: FreeCAD Scripting Basics.

The FHPort object can be used in macros and from the Python console by using the following function:

port = makeFHPort(nodePos=None,nodeNeg=None,name='FHPort')
  • Creates a FHPort object.
  • nodePos is the positive node FHNode object of the FastHenry port.
  • nodeNeg is the negative node FHNode object of the FastHenry port.
  • name is the name of the object

Example:

import FreeCAD, EM

fhnode_p = EM.makeFHNode(X=1.0,Y=0,Z=0)
fhnode_n = EM.makeFHNode(X=0,Y=1.0,Z=0)

fhport = EM.makeFHPort(fhnode_p, fhnode_n)