TechDraw Midpoints/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/it|Vertice cosmetico|Quadrante|TechDraw|IconL=Techdraw-point.svg|IconC=Workbench_TechDr...")
(Created page with "== Note ==")
(12 intermediate revisions by 2 users not shown)
Line 2: Line 2:
{{Docnav/it|[[TechDraw_CosmeticVertex/it|Vertice cosmetico]]|[[TechDraw_Quadrant/it|Quadrante]]|[[TechDraw_Module/it|TechDraw]]|IconL=Techdraw-point.svg|IconC=Workbench_TechDraw.svg|IconR=Techdraw-quadrant.svg}}
{{Docnav/it|[[TechDraw_CosmeticVertex/it|Vertice cosmetico]]|[[TechDraw_Quadrant/it|Quadrante]]|[[TechDraw_Module/it|TechDraw]]|IconL=Techdraw-point.svg|IconC=Workbench_TechDraw.svg|IconR=Techdraw-quadrant.svg}}


{{GuiCommand
{{GuiCommand/it
|Name=TechDraw Midpoints
|Name=TechDraw Midpoints
|Name/it=Punti mediani
|Icon=techdraw-midpoint.svg
|Icon=techdraw-midpoint.svg
|MenuLocation=TechDraw → Midpoints
|MenuLocation=TechDraw → Punti mediani
|Workbenches=[[TechDraw Module|TechDraw]]
|Workbenches=[[TechDraw Module/it|TechDraw]]
|SeeAlso=[[TechDraw CosmeticVertex]], [[TechDraw Quadrant]]
|SeeAlso=[[TechDraw CosmeticVertex/it|Vertice cosmetico]], [[TechDraw Quadrant/it|Quadrante]]
|Version=0.19
|Version=0.19
}}
}}


==Description==
==Descrizione==


Lo strumento Punti mediani aggiunge dei vertici cosmetici nei punti medi di uno o più bordi.
The Midpoints tool adds Cosmetic Vertices at the midpoints of one or more Edges.


[[Image:TechDraw_CosmeticMidpoint_Sample.png]]
[[Image:TechDraw_CosmeticMidpoint_Sample.png]]
{{Caption|Cosmetic Vertices at midpoints of Edges}}
{{Caption|Vertici cosmetici nei punti mediani dei bordi}}


==How to use==
== Utilizzo ==


# Select one or more Edges in a View.
# Selezionare uno o più bordi in una vista.
# Press the {{Button|[[Image:techdraw-midpoint.svg|16px]] [[TechDraw Midpoints|Midpoints]]}} button
# Premere il pulsante {{Button|[[Image:techdraw-midpoint.svg|16px]] [[TechDraw Midpoints/it|Punti mediani]]}}
# I vertici cosmetici vengono aggiunti nei punti medi dei bordi.
# Cosmetic Vertices will be added at the mid-point(s) of the Edge(s).




==Properties==
== Proprietà ==


I vertici cosmetici non hanno proprietà proprie, in quanto non sono dei Document Objects. Condividono le impostazioni di colore e dimensione con i normali vertici della geometria.
Cosmetic Vertices have no properties of their own, as they are not Document Objects. They share color and size settings with regular geometry vertices.


==Scripting==
==Script==


{{Emphasis|See also:}} [[TechDraw API]] and [[FreeCAD Scripting Basics]].
{{Emphasis|Vedere anche:}} [[TechDraw API/it|API TechDraw]] e [[FreeCAD Scripting Basics/it|Nozioni di base sugli script di FreeCAD]].


Cosmetic Vertices are not accessible from [[macros]] or the [[Python]] console at this time. This snippet will remove all Cosmetic Vertices from the View.
In questo momento i vertici cosmetici non sono accessibili dalle [[macros/it|macro]] o dalla console [[Python/it|Python]]. Questo snippet rimuoverà tutti i vertici cosmetici dalla vista.


{{Code|code=
{{Code|code=
Line 42: Line 43:




==Notes==
== Note ==

* This feature was added in v0.19
* This feature was added in v0.19



Revision as of 08:44, 16 July 2019

Other languages:

File:Techdraw-midpoint.svg Punti mediani

Posizione nel menu
TechDraw → Punti mediani
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
0.19
Vedere anche
Vertice cosmetico, Quadrante

Descrizione

Lo strumento Punti mediani aggiunge dei vertici cosmetici nei punti medi di uno o più bordi.

Vertici cosmetici nei punti mediani dei bordi

Utilizzo

  1. Selezionare uno o più bordi in una vista.
  2. Premere il pulsante File:Techdraw-midpoint.svg Punti mediani
  3. I vertici cosmetici vengono aggiunti nei punti medi dei bordi.


Proprietà

I vertici cosmetici non hanno proprietà proprie, in quanto non sono dei Document Objects. Condividono le impostazioni di colore e dimensione con i normali vertici della geometria.

Script

Vedere anche: API TechDraw e Nozioni di base sugli script di FreeCAD.

In questo momento i vertici cosmetici non sono accessibili dalle macro o dalla console Python. Questo snippet rimuoverà tutti i vertici cosmetici dalla vista.

>>> v = App.ActiveDocument.View
>>> v.clearCV()
>>> App.activeDocument().recompute()


Note

  • This feature was added in v0.19