TechDraw VerticalDimension/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "Dimension Verticale TechDraw")
 
No edit summary
 
(116 intermediate revisions by 7 users not shown)
Line 1: Line 1:
<languages/>
{{GuiCommand|Name=TechDraw Dimension Vertical|Workbenches=[[TechDraw Module|TechDraw]]|MenuLocation=TechDraw → Dimension Vertical|Shortcut=|SeeAlso=}}

{{Docnav/fr
|[[TechDraw_HorizontalDimension/fr|Cote horizontale]]
|[[TechDraw_RadiusDimension/fr|Cote de rayon]]
|[[TechDraw_Workbench/fr|Atelier TechDraw]]
|IconL=TechDraw_HorizontalDimension.svg
|IconR=TechDraw_RadiusDimension.svg
|IconC=Workbench_TechDraw.svg
}}

{{GuiCommand/fr
|Name=TechDraw VerticalDimension
|Name/fr=TechDraw Cote verticale
|MenuLocation=TechDraw → Dimensions → Insérer une cote verticale
|Workbenches=[[TechDraw_Workbench/fr|TechDraw]]
|Shortcut={{KEY|Maj}} + {{KEY|V}}
|SeeAlso=[[TechDraw_LengthDimension/fr|TechDraw Cote de longueur]], [[TechDraw_HorizontalDimension/fr|TechDraw Cote horizontale]]
}}


==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 Link Dimension [[Image:LinkDimension.png|24px]] tool.
[[File:VerticalSample.png|200px|center]]


L'outil '''TechDraw Cote verticale''' ajoute une cote verticale à une vue. La cote peut être la distance verticale entre deux points ou la longueur verticale d'une ligne droite. Comme pour l'outil [[TechDraw_LengthDimension/fr|TechDraw Lier une cote]], il est également possible de sélectionner deux arêtes ou un point et une arête, mais ces options ont moins de sens pour cet outil.
==How to use==
# Select the points or edge which define your measurement.
# Press the {{KEY|[[Image:Dimension_Vertical.png|24px]] [[TechDraw Dimension Vertical|Dimension Vertical]]}} button
# A dimension will be added to the View. The dimension may be dragged to the desired position.


Pour plus d'informations, voir [[TechDraw_LengthDimension/fr|TechDraw Lier une cote]]
==Options==
None.


[[Image:TechDraw_Dimension_Vertical_example.png|220px]]
==Properties==
{{Caption|Cote verticale prise entre deux points}}
{{TechDraw DimProps}}



==Scripting==
{{Docnav/fr
Vertical dimensions can be added to Pages using Python.
|[[TechDraw_HorizontalDimension/fr|Cote horizontale]]
{{Code|code=
|[[TechDraw_RadiusDimension/fr|Cote de rayon]]
dim1 = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDimension','Dimension')
|[[TechDraw_Workbench/fr|Atelier TechDraw]]
dim1.Type = "DistanceX"
|IconL=TechDraw_HorizontalDimension.svg
dim1.References2D=[(view1, 'Edge1')]
|IconR=TechDraw_RadiusDimension.svg
rc = page.addView(dim1)
|IconC=Workbench_TechDraw.svg
}}
}}
==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.


{{TechDraw Tools navi{{#translation:}}}}
{{clear}}
{{Userdocnavi{{#translation:}}}}
<languages/>

Latest revision as of 12:34, 29 July 2023

TechDraw Cote verticale

Emplacement du menu
TechDraw → Dimensions → Insérer une cote verticale
Ateliers
TechDraw
Raccourci par défaut
Maj + V
Introduit dans la version
-
Voir aussi
TechDraw Cote de longueur, TechDraw Cote horizontale

Description

L'outil TechDraw Cote verticale ajoute une cote verticale à une vue. La cote peut être la distance verticale entre deux points ou la longueur verticale d'une ligne droite. Comme pour l'outil TechDraw Lier une cote, il est également possible de sélectionner deux arêtes ou un point et une arête, mais ces options ont moins de sens pour cet outil.

Pour plus d'informations, voir TechDraw Lier une cote

Cote verticale prise entre deux points