Sketcher ConstrainEqual/it: Difference between revisions

From FreeCAD Documentation
(Created page with "Il vincolo Uguale forza due o più segmenti di linea in una linea, in una polilinea o in un rettangolo ad avere uguale lunghezza. Se applicato a archi o cerchi, vincola uguali...")
(Updating to match new version of source page)
 
(42 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
{{GuiCommand/it|Name=Constraint EqualLength|Name/it=Uguale|Workbenches=[[Sketcher Workbench/it|Schizzo]], [[PartDesign Workbench/it|PartDesign]]|MenuLocation=PartDesign → Schizzo → Uguale|SeeAlso=[[Constraint Radius/it|Raggio]]}}


<div class="mw-translate-fuzzy">
{{Docnav/it|[[Sketcher ConstrainTangent/it|Tangente]]|[[Sketcher_ConstrainSymmetric/it|Simmetria]]|[[Sketcher_Workbench/it|Sketcher]]|IconL=Constraint_Tangent.png|IconC=Workbench_Sketcher.svg|IconR=Constraint_Symmetric.png}}
</div>

<div class="mw-translate-fuzzy">
{{GuiCommand/it|Name=Sketcher ConstrainEqual|Name/it=Uguale|Workbenches=[[Sketcher Workbench/it|Schizzo]]|MenuLocation=PartDesign → Schizzo → Uguale|Shortcut=E|SeeAlso=[[Sketcher_ConstrainRadius/it|Raggio]]}}
</div>

<span id="Description"></span>
==Descrizione==

<div class="mw-translate-fuzzy">
Il vincolo Uguale forza due o più segmenti di linea in una linea, in una polilinea o in un rettangolo ad avere uguale lunghezza. Se applicato a archi o cerchi, vincola uguali i raggi. Non può essere applicato a geometrie primitive che non sono dello stesso tipo, ad esempio segmenti con archi.
Il vincolo Uguale forza due o più segmenti di linea in una linea, in una polilinea o in un rettangolo ad avere uguale lunghezza. Se applicato a archi o cerchi, vincola uguali i raggi. Non può essere applicato a geometrie primitive che non sono dello stesso tipo, ad esempio segmenti con archi.
</div>


====Operation====
==Usage==
The example sketch below contains a number of sketch primitives ( line,poly-line, rectangle, arc and circle).<br /><br />
[[File:EqualConstraint1.png|256px]]<br /><br />
Select two or more line segments (e.g. line and one side of the rectangle).<br /><br />
[[File:EqualConstraint2.png|256px]]<br /><br />
Click on the Constrain Equal icon [[File:Constraint_EqualLength.png|16px]] in the Sketcher toolbar (in either the Sketcher or Part Design workbenches) or select the Constrain Equal menu item from the Sketcher constraints sub menu item in either the Sketch or Part Design menu item depending upon which workbench is selected (Sketcher or Part Design) to apply the constraint to the selected items.<br /><br />
[[File:EqualConstraint3.png|256px]]<br /><br />
Now select the arc and the circle in the sketch.<br /><br />
[[File:EqualConstraint4.png|256px]]<br /><br />
and apply the Constrain Equal [[File:Constraint_EqualLength.png|16px]] constraint as before.<br /><br />
[[File:EqualConstraint5.png|256px]]<br /><br />
Now select the line segment, all segments of the poly-line and one of the remaining unconstrained sides of the rectangle <br /><br />
[[File:EqualConstraint6.png|256px]]<br /><br />
and apply the Constrain Equal [[File:Constraint_EqualLength.png|16px]] constraint as before.<br /><br />
[[File:EqualConstraint7.png|256px]]<br /><br />
Select the line segment and the arc<br /><br />
[[File:EqualConstraint8.png|256px]]<br /><br />
and apply the Constrain Equal [[File:Constraint_EqualLength.png|16px]] constraint as before. A pop-up message indicates that the constrained items have to be of the same geometrical type (lines of zero curvature or lines of non-zero curvature).<br /><br />
[[File:EqualConstraint9.png|256px]]


See also: [[Sketcher_Workbench#Drawing_aids|Drawing aids]].
<languages/>

===[[Sketcher_Workbench#Continue_modes|Continue mode]]===

<div class="mw-translate-fuzzy">
Fare clic sull'icona {{Button|[[File:Constraint_EqualLength.png|16px]] [[Sketcher_ConstrainEqual/it|Uguale]]}} nella barra degli strumenti di vincolo o selezionare il vincolo Uguale dal sottomenu dell'ambiente Schizzo (o quello dell'ambiente PartDesign).
</div>

===Run-once mode===

# Select two or more edges of the same type.
# Invoke the tool as explained above, or with the following additional option:
#* {{Version|1.0}}: Right-click in the [[3D_view|3D view]] and select the {{MenuCommand|[[Image:Sketcher_ConstrainEqual.svg|16px]] Constrain equal}} option from the context menu.
# Depending on the selection one or more constraints are added.

== Scripting ==

{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Equal', Edge1, Edge2))}}

The [[Sketcher_scripting|Sketcher scripting]] page explains the values which can be used for {{incode|Edge1}} and {{incode|Edge2}} and contains further examples on how to create constraints from Python scripts.


<div class="mw-translate-fuzzy">
{{Docnav/it|[[Sketcher ConstrainTangent/it|Tangente]]|[[Sketcher_ConstrainSymmetric/it|Simmetria]]|[[Sketcher_Workbench/it|Sketcher]]|IconL=Constraint_Tangent.png|IconC=Workbench_Sketcher.svg|IconR=Constraint_Symmetric.png}}
</div>

{{Sketcher_Tools_navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

Latest revision as of 15:02, 23 April 2024

Uguale

Posizione nel menu
PartDesign → Schizzo → Uguale
Ambiente
Schizzo
Avvio veloce
E
Introdotto nella versione
-
Vedere anche
Raggio

Descrizione

Il vincolo Uguale forza due o più segmenti di linea in una linea, in una polilinea o in un rettangolo ad avere uguale lunghezza. Se applicato a archi o cerchi, vincola uguali i raggi. Non può essere applicato a geometrie primitive che non sono dello stesso tipo, ad esempio segmenti con archi.

Usage

See also: Drawing aids.

Continue mode

Fare clic sull'icona Uguale nella barra degli strumenti di vincolo o selezionare il vincolo Uguale dal sottomenu dell'ambiente Schizzo (o quello dell'ambiente PartDesign).

Run-once mode

  1. Select two or more edges of the same type.
  2. Invoke the tool as explained above, or with the following additional option:
  3. Depending on the selection one or more constraints are added.

Scripting

Sketch.addConstraint(Sketcher.Constraint('Equal', Edge1, Edge2))

The Sketcher scripting page explains the values which can be used for Edge1 and Edge2 and contains further examples on how to create constraints from Python scripts.