TechDraw HorizontalDimension/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "==Użycie==")
(Created page with "==Ograniczenia==")
Line 35: Line 35:
To change the properties of a dimension object either double-clicking it in the drawing or in the [[Tree_view|Tree view]]. This will open the [[TechDraw_LengthDimension#Dimension_dialog|dimension dialog]].
To change the properties of a dimension object either double-clicking it in the drawing or in the [[Tree_view|Tree view]]. This will open the [[TechDraw_LengthDimension#Dimension_dialog|dimension dialog]].


== Limitations ==
==Ograniczenia==


Dimension objects are vulnerable to the "[[Topological_naming_problem|topological naming problem]]". See [[TechDraw_LengthDimension|TechDraw LengthDimension]] for more information.
Dimension objects are vulnerable to the "[[Topological_naming_problem|topological naming problem]]". See [[TechDraw_LengthDimension|TechDraw LengthDimension]] for more information.

Revision as of 17:46, 21 March 2022

Rysunek Techniczny: Wstaw wymiar poziomy

Lokalizacja w menu
Rysunek Techniczny → Wymiary → Wstaw wymiar poziomy
Środowisko pracy
Rysunek Techniczny
Domyślny skrót
Shift + H
Wprowadzono w wersji
-
Zobacz także
Wymiar długości, Wstaw wymiar pionowy

Opis

Narzędzie Wymiar poziomy dodaje wymiar poziomy do widoku. Może to być odległość między dwoma wierzchołkami, długość jednej krawędzi lub odległość pozioma między dwoma krawędziami. Początkowo będzie to odległość rzutowana (tzn. taka, jak na rysunku), ale można ją zmienić na rzeczywistą odległość 3D za pomocą narzędzia Powiązanie wymiaru.

Wymiar długości odnoszący się do dwóch dowolnych węzłów widoku. Odległość jest mierzona w poziomie.

Użycie

  1. Select the points or edge which define your measurement.
  2. Press the Horizontal Dimension button
  3. A dimension will be added to the View. The dimension may be dragged to the desired position.
  4. If needed, add tolerances as described in this page.

To change the properties of a dimension object either double-clicking it in the drawing or in the Tree view. This will open the dimension dialog.

Ograniczenia

Dimension objects are vulnerable to the "topological naming problem". See TechDraw LengthDimension for more information.

Properties

See TechDraw LengthDimension.

Scripting

See also: TechDraw API and FreeCAD Scripting Basics.

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

dim1 = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDimension','Dimension')
dim1.Type = "DistanceX"
dim1.References2D=[(view1, 'Edge1')]
rc = page.addView(dim1)