TechDraw VerticalDimension/fr: Difference between revisions

From FreeCAD Documentation
(Replaced content with "==Description==")
(Created page with "L'outil Distance verticale ajoute une dimension verticale à une vue. La dimension peut être entre deux sommets, la longueur d'un bord ou la distance verticale entre deux bor...")
Line 4: Line 4:
==Description==
==Description==


The Dimension Vertical tool adds a vertical dimension to a View. The dimension may be between two vertices, the length of one edge or the vertical distance between 2 edges. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the {{Button|[[Image:TechDraw_Dimension_Link.svg|16px]] [[TechDraw_Dimension_Link|Link Dimension]]}} tool.
L'outil Distance verticale ajoute une dimension verticale à une vue. La dimension peut être entre deux sommets, la longueur d'un bord ou la distance verticale entre deux bords. La dimension sera initialement la distance projetée (c.-à-d. comme indiqué sur le dessin), mais elle peut être remplacée par la distance 3D réelle en utilisant l'outil {{Button|[[Image:TechDraw_Dimension_Link.svg|16px]][[TechDraw_Dimension_Link|Lier une Dimension]]}} tool.


[[Image:TechDraw_Dimension_Vertical_example.png]]
[[Image:TechDraw_Dimension_Vertical_example.png]]

Revision as of 15:28, 7 January 2019

Distance Verticale

Emplacement du menu
TechDraw → Distance Verticale
Ateliers
TechDraw
Raccourci par défaut
Aucun
Introduit dans la version
-
Voir aussi
TechDraw Dimension Length, TechDraw Dimension Horizontal

Description

L'outil Distance verticale ajoute une dimension verticale à une vue. La dimension peut être entre deux sommets, la longueur d'un bord ou la distance verticale entre deux bords. La dimension sera initialement la distance projetée (c.-à-d. comme indiqué sur le dessin), mais elle peut être remplacée par la distance 3D réelle en utilisant l'outil Lier une Dimension tool.

Length dimension taken from two arbitrary nodes of the view; the distance is measured vertically

Comment faire

  1. Sélectionnez les points ou les arêtes qui définissent votre mesure.
  2. Appuyez sur le boutonFile:Dimension Vertical.png Distance Verticale
  3. Une dimension sera ajoutée à la vue. La dimension peut être traînée à la position désirée.
  1. Select the points or edge which define your measurement.
  2. Press the File:Dimension Vertical.png Dimension Vertical button
  3. A dimension will be added to the View. The dimension may be dragged to the desired position.

Limitations

Dimension objects are vulnerable to "topological naming" issues. See the information in the TechDraw Dimension Length tool for more information.

Propriétés

This object has the same properties as the Distance Horizontale TechDraw tool. See that tool for details.

This object has the same properties as the TechDraw Dimension Length tool. See that tool for details.

Script

Les distances verticales peuvent être ajoutées aux Pages en utilisant le code Python.

See also: TechDraw API and FreeCAD Scripting Basics.

The Dimension Vertical 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)