EM FHEquiv/it

Other languages:

EM FHEquiv

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

Descrizione

The FHEquiv tool short-circuits two FHNode objects.

FastHenry FHEquiv

Usage

The FHEquiv object is based on the two existing FHNodes that it will short-circuit.

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

Remarks

Properties

Scripting

See also: FreeCAD Scripting Basics.

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

equiv = makeFHEquiv(node1=None,node2=None,name='FHEquiv')

Esempio:

import FreeCAD, EM

fhnode1 = EM.makeFHNode(X=1.0,Y=0,Z=0)
fhnode2 = EM.makeFHNode(X=0,Y=1.0,Z=0)

fhequiv = EM.makeFHEquiv(fhnode1, fhnode2)