TechDraw Midpoints/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{TechDraw Tools navi/it}}")
No edit summary
(35 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Docnav/it
{{Docnav|[[TechDraw_CosmeticVertex|Cosmetic Vertex]]|[[TechDraw_Quadrant|Quadrant]]|[[TechDraw_Module|TechDraw]]|IconL=Techdraw-point.svg|IconC=Workbench_TechDraw.svg|IconR=Techdraw-quadrant.svg}}
|[[TechDraw_CosmeticVertex/it|Vertice cosmetico]]
|[[TechDraw_Quadrants/it|Quadrante]]
|[[TechDraw_Module/it|TechDraw]]
|IconL=TechDraw_CosmeticVertex.svg
|IconC=Workbench_TechDraw.svg
|IconR=TechDraw_Quadrants.svg
}}


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


==Description==
==Descrizione==


Lo strumento Punti mediani aggiunge dei [[Glossary#V|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|250px]]
{{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_Midpoints.svg|16px]] 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).


Per eliminare un punto mediano, selezionarlo e utilizzare il pulsante della barra degli strumenti {{Button|[[Image:TechDraw_CosmeticEraser.svg|16px]] [[TechDraw_CosmeticEraser/it|Rimuovi oggetto cosmetico]]}}.


==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 50:




{{Docnav/it
==Notes==
|[[TechDraw_CosmeticVertex/it|Vertice cosmetico]]
* This feature was added in v0.19
|[[TechDraw_Quadrants/it|Quadrante]]

|[[TechDraw_Module/it|TechDraw]]
{{Docnav|[[TechDraw_CosmeticVertex|Cosmetic Vertex]]|[[TechDraw_Quadrant|Quadrant]]|[[TechDraw_Module|TechDraw]]|IconL=Techdraw-point.svg|IconC=Workbench_TechDraw.svg|IconR=Techdraw-quadrant.svg}}
|IconL=TechDraw_CosmeticVertex.svg

|IconC=Workbench_TechDraw.svg
{{TechDraw Tools navi/it}}
|IconR=TechDraw_Quadrants.svg
}}


{{TechDraw Tools navi{{#translation:}}}}
{{Userdocnavi}}
{{Userdocnavi{{#translation:}}}}
{{clear}}
{{clear}}

Revision as of 20:17, 22 April 2020

Other languages:

Punti mediani

Posizione nel menu
TechDraw → Aggiungi vertici → 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 Punti mediani
  3. I vertici cosmetici vengono aggiunti nei punti medi dei bordi.

Per eliminare un punto mediano, selezionarlo e utilizzare il pulsante della barra degli strumenti Rimuovi oggetto cosmetico.

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()