TechDraw ArchView/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "Widok architektoniczny jest renderowany w środowisku Architektura, dlatego środowisko Rysunek Techniczny ma ograniczoną kontrolę nad jego wyglądem. Może być konieczne wprowadzenie zmian w środowisku pierwotnym, aby uzyskać pożądaną reprezentację.")
(Created page with "==Opcje==")
Line 38: Line 38:
Widok architektoniczny jest renderowany w środowisku [[Arch_Workbench/pl|Architektura]], dlatego środowisko Rysunek Techniczny ma ograniczoną kontrolę nad jego wyglądem. Może być konieczne wprowadzenie zmian w środowisku pierwotnym, aby uzyskać pożądaną reprezentację.
Widok architektoniczny jest renderowany w środowisku [[Arch_Workbench/pl|Architektura]], dlatego środowisko Rysunek Techniczny ma ograniczoną kontrolę nad jego wyglądem. Może być konieczne wprowadzenie zmian w środowisku pierwotnym, aby uzyskać pożądaną reprezentację.


==Options==
<span id="Options"></span>
==Opcje==


* The Arch View is rendered by the [[Arch_Workbench|Arch Workbench]].
* The Arch View is rendered by the [[Arch_Workbench|Arch Workbench]].

Revision as of 16:14, 19 July 2023

Rysunek Techniczny: Wstaw obiekt środowiska Architektura

Lokalizacja w menu
Rysunek Techniczny → Insert Arch Workbench Object
Środowisko pracy
Rysunek Techniczny, Architektura
Domyślny skrót
brak
Wprowadzono w wersji
-
Zobacz także
Płaszczyzna przekroju

Opis

Narzędzie Wstaw obiekt środowiska Architektura wstawia widok przekroju na stronie Rysunku Technicznego.

Użycie

  1. Wybierz płaszczyznę przekroju architektonicznego w oknie widoku 3D lub w widoku drzewa.
  2. Jeśli w dokumencie znajduje się wiele stron rysunku, należy wybrać żądaną stronę w drzewie.
  3. Naciśnij Wstaw obiekt środowiska Architektura.
  4. Na stronie pojawi się widok obiektów widzianych przez płaszczyznę przekroju.

Ograniczenia

Widok architektoniczny jest renderowany w środowisku Architektura, dlatego środowisko Rysunek Techniczny ma ograniczoną kontrolę nad jego wyglądem. Może być konieczne wprowadzenie zmian w środowisku pierwotnym, aby uzyskać pożądaną reprezentację.

Opcje

  • The Arch View is rendered by the Arch Workbench.
  • 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 TechDraw Workbench, is fast and produces only lines (no face fill possible)
    • 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:
  • Only the base line of Arch Pipes is rendered, not the full volume of the tube:

Properties

See also TechDraw View.

Data

Arch view

  • DANESource (Link): The section plane object to be displayed.
  • DANEAll On (Bool): If hidden objects must be shown or not. If false, only objects that are visible in the 3D view are rendered.
  • DANERender Mode (Enumeration): The render mode to use, Solid or Wireframe.
  • DANEFill Spaces (Bool): If true, Arch Spaces are shown as a colored area.
  • DANEShow Hidden (Bool): If the hidden geometry (the part of the geometry 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.
  • DANEShow Fill (Bool): If cut areas must be filled with a grey color or not.
  • DANELine Width (Float): The width of the main lines. Cut lines and projected/2D line widths ratios can be configured in the Arch preferences.
  • DANEFont Size (Float): The size of all texts that appear in this view.
  • DANECut Line Width (Float): Width of the cut lines in this view.
  • DANEJoin Arch (Bool): If true, walls and structures will be fused by material.

Scripting

See also: Autogenerated API documentation and FreeCAD Scripting Basics.

The ArchView 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)