TechDraw ArchView/it: Difference between revisions

From FreeCAD Documentation
(Created page with "== Proprietà ==")
(Created page with "==Script==")
Line 58: Line 58:
* {{PropertyData|Font Size}}: The size of all texts that appear in this view
* {{PropertyData|Font Size}}: The size of all texts that appear in this view


==Scripting==
==Script==


{{Emphasis|See also:}} [[TechDraw API|TechDraw API]] and [[FreeCAD Scripting Basics|FreeCAD Scripting Basics]].
{{Emphasis|See also:}} [[TechDraw API|TechDraw API]] and [[FreeCAD Scripting Basics|FreeCAD Scripting Basics]].

Revision as of 20:34, 8 April 2020

Other languages:

Vista di Arch

Posizione nel menu
TechDraw → Vista di Arch
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Arch, Piano di sezione di Arch

Descrizione

Lo strumento Vista di Arch inserisce una vista di un Piano di sezione di Arch in una pagina di TechDraw.

Utilizzo

  1. Selezionare una Sezione di Arch nella finestra 3D o nella vista a albero.
  2. Se nel documento ci sono più pagine di disegno, è necessario selezionare anche la pagina desiderata nella struttura.
  3. Premere il pulsante Vista di Arch
  4. Nella pagina appare una vista degli oggetti visti dal piano di sezione.

Limitazioni

Poiché la Vista di Arch è resa all'interno del modulo Arch, TechDraw ha un controllo limitato sul suo aspetto. Potrebbe essere necessario apportare delle modifiche all'interno di Arch per ottenere la rappresentazione desiderata.

Opzioni

  • The Arch View is rendered by the Arch Module, the same way as in the Drawing Workbench. See Notes.
  • Draft Dimensions, Draft Texts and any other 2D (Sketch or Draft) object considered by the section plane is rendered "as is" (no intersection or hidden lines) on top of the solid geometry
  • The volume of Arch Spaces is not rendered, only the label will be rendered
  • Cut lines, projected lines (if Show Hidden property is set to True) and 2D lines above can be rendered with different line widths. This can be configured in the Arch preferences.
  • The ArchView has two rendering modes: Wireframe, which uses the OpenCasCade algorithms of the Drawing Module, is fast and produces only lines (no face fill possible), and Solid, which is based on the Painter's algorithm, and is capable of rendering faces filled with their shape color. However, it is much slower and can fail in many situations. The image below illustrates the difference between the two rendering modes:

  • Per le Tubazioni sono rese solo le linee di base, ma non il volume dei tubi:

Proprietà

  • DatiSource: The section plane object to be displayed
  • DatiAll On: If hidden objects must be shown or not. If False, only objects that are visible in the 3D view are rendered
  • DatiRender Mode: The render mode to use, Solid or Wireframe
  • DatiShow Hidden: If the hidden geometry (the part of the goemetry that lies behind the section plane) is shown or not. It will be rendered in dashed line, which can be configured in the Arch preferences.
  • DatiShow Fill: If cut areas must be filled with a grey color or not
  • DatiLine Width: The width of the main lines. Cut lines and projected/2D line widths ratios can be configured in the Arch preferences
  • DatiFont Size: The size of all texts that appear in this view

Script

See also: TechDraw API and FreeCAD Scripting Basics.

The New Arch tool can be used in macros and from the Python console by using the following functions:

dv = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewArch','TestArch')
dv.Source = mySectionPlane
rc = page.addView(dv)