TechDraw ShowAll/it: Difference between revisions

From FreeCAD Documentation
(Created page with "== Note ==")
(Created page with "Lo strumento Mostra tutto mostra o nasconde le linee invisibili in una vista. Notare che "invisibile" è uno stato cosmetico, da non confondere con le linee nascoste che sono...")
Line 16: Line 16:
==Descrizione==
==Descrizione==


Lo strumento Mostra tutto mostra o nasconde le linee invisibili in una vista. Notare che "invisibile" è uno stato cosmetico, da non confondere con le linee nascoste che sono costrutti geometrici.
The ShowAll tool shows or hide invisible lines in a View. Note that "invisible" is a cosmetic state, not to be confused with hidden lines which are geometric constructs.


== Utilizzo ==
== Utilizzo ==

Revision as of 17:22, 15 October 2019

Other languages:


File:Techdraw-showall.svg Mostra tutto

Posizione nel menu
TechDraw → Mostra tutto
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
0.19
Vedere anche
Decora linea

Descrizione

Lo strumento Mostra tutto mostra o nasconde le linee invisibili in una vista. Notare che "invisibile" è uno stato cosmetico, da non confondere con le linee nascoste che sono costrutti geometrici.

Utilizzo

  1. Select a View on a Page or in the tree.
  2. Press the File:Techdraw-showall.svg ShowAll button
  3. The state of the invisible lines in the View will be reversed.

Proprietà

The ShowAll tool has no properties, as it is not a Document Object.

Script

See also: TechDraw API and FreeCAD Scripting Basics.

The effect of the ShowAll tool can be duplicated in macros or the Python console.

>>> v = App.ActiveDocument.View
>>> vvo = v.ViewObject
>>> vvo.ShowAllEdges = True
>>> App.activeDocument().recompute()

Note