TechDraw VerticalDimension/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "Dimension Verticale TechDraw")
 
(Created page with "{{GuiCommand/fr|Name=TechDraw Dimension Vertical|Name/fr=Dimension Verticale|Workbenches=TechDraw|MenuLocation=TechDraw → Dimension Verticale|Shortcu...")
Line 1: Line 1:
{{GuiCommand|Name=TechDraw Dimension Vertical|Workbenches=[[TechDraw Module|TechDraw]]|MenuLocation=TechDraw → Dimension Vertical|Shortcut=|SeeAlso=}}
{{GuiCommand/fr|Name=TechDraw Dimension Vertical|Name/fr=Dimension Verticale|Workbenches=[[TechDraw Module/fr|TechDraw]]|MenuLocation=TechDraw → Dimension Verticale|Shortcut=|SeeAlso=}}


==Description==
==Description==

Revision as of 18:06, 26 February 2018

Dimension Verticale

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

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 Link Dimension tool.

How to use

  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.

Options

None.

Properties

Template:TechDraw DimProps

Scripting

Vertical dimensions can be added to Pages using Python.

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

Notes

  • All Dimensions are extremely vulnerable to the infamous "topological naming" issue. It is not possible at this time to keep references to 2D (projected) or 3D (actual) geometrical objects in sync with changes in the model. It is recommended that Dimensions be added towards the end of the drawing creation process.