TechDraw Midpoints/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Script==")
(Updating to match new version of source page)
(4 intermediate revisions by 2 users not shown)
Line 32: Line 32:
==Script==
==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 42:
}}
}}



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


{{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}}

Revision as of 19:45, 8 September 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()