TechDraw Quadrants/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{TechDraw Tools navi/it}}")
No edit summary
(47 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Docnav/it
{{Docnav|[[TechDraw_Midpoints|Midpoints]]|[[TechDraw_Hatching|Hatching]]|[[TechDraw_Module|TechDraw]]|IconL=Techdraw-midpoint.svg|IconC=Workbench_TechDraw.svg|IconR=Techdraw-hatch.svg}}
|[[TechDraw_Midpoints/it|Punti mediani]]
|[[TechDraw_FaceCenterLine/it|Linea a centro faccia]]
|[[TechDraw_Module/it|TechDraw]]
|IconL=TechDraw_Midpoints.svg
|IconC=Workbench_TechDraw.svg
|IconR=TechDraw_FaceCenterLine.svg
}}


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


==Description==
==Descrizione==


Lo strumento Quadrante aggiunge dei [[TechDraw_CosmeticVertex/it|vertici cosmetici]] nei punti a 90/180/270° di un bordo circolare. Il vertice di 0° dovrebbe già essere presente come vertice geometrico.
The Quadrant tool adds Cosmetic Vertices at the 90/180/270 degree points of a circular Edge (the 0 degree vertex should already be there as a geometric vertex).


[[Image:TechDraw_CosmeticQuadrant_Sample.png]]
[[Image:TechDraw_CosmeticQuadrant_Sample.png|250px]]
{{Caption|Cosmetic Vertices at quadrant points of a circle}}
{{Caption|Vertici cosmetici nei punti del quadrante di un cerchio
}}


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


# Select one or more (circular) Edges in a View.
# Selezionare uno o più bordi circolari in una vista.
# Press the {{Button|[[Image:Techdraw-quadrant.svg|16px]] [[TechDraw Quadrant|Quadrant]]}} button
# Premere il pulsante {{Button|[[Image:TechDraw_Quadrants.svg|16px]] Quadrante}}.
# I vertici cosmetici vengono aggiunti nei punti quarti del bordo.
# Cosmetic Vertices will be added at the quarter-point(s) of the Edge(s).


'''Nota:''' Questo strumento può essere utilizzato su qualsiasi bordo, non solo sui cerchi.


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


== Proprietà ==
Cosmetic Vertices have no properties of their own, as they are not Document Objects. They share color and size settings with regular geometry vertices.


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.
==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 53:




{{Docnav/it
==Notes==
|[[TechDraw_Midpoints/it|Punti mediani]]
* This feature was added in v0.19
|[[TechDraw_FaceCenterLine/it|Linea a centro faccia]]
* This tool can actually be used on any Edge, not just circles.
|[[TechDraw_Module/it|TechDraw]]

|IconL=TechDraw_Midpoints.svg
{{Docnav|[[TechDraw_Midpoints|Midpoints]]|[[TechDraw_Hatching|Hatching]]|[[TechDraw_Module|TechDraw]]|IconL=Techdraw-midpoint.svg|IconC=Workbench_TechDraw.svg|IconR=Techdraw-hatch.svg}}
|IconC=Workbench_TechDraw.svg

|IconR=TechDraw_FaceCenterLine.svg
{{TechDraw Tools navi/it}}
}}


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

Revision as of 20:33, 22 April 2020

Other languages:

Quadrante

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

Descrizione

Lo strumento Quadrante aggiunge dei vertici cosmetici nei punti a 90/180/270° di un bordo circolare. Il vertice di 0° dovrebbe già essere presente come vertice geometrico.

Vertici cosmetici nei punti del quadrante di un cerchio

Utilizzo

  1. Selezionare uno o più bordi circolari in una vista.
  2. Premere il pulsante Quadrante.
  3. I vertici cosmetici vengono aggiunti nei punti quarti del bordo.

Nota: Questo strumento può essere utilizzato su qualsiasi bordo, non solo sui cerchi.

Per eliminare un vertice di un quadrante, 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()