TechDraw VerticalDimension/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "==Propriétés== {{TechDraw DimProps}}")
No edit summary
 
(111 intermediate revisions by 7 users not shown)
Line 1: Line 1:
<languages/>
{{GuiCommand/fr|Name=TechDraw Dimension Vertical|Name/fr=Dimension Verticale|Workbenches=[[TechDraw Module/fr|TechDraw]]|MenuLocation=TechDraw → Dimension Verticale|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==
L'outil Cotation verticale ajoute une cote verticale à une vue. La dimension peut être comprise entre deux sommets, la longueur d'un bord ou la distance verticale entre deux bords. La distance sera initialement la distance projetée (c.-à-d. Comme indiqué sur le dessin), mais cela peut être changé à la distance 3D réelle en utilisant l'outil Lier la dimension[[Image:LinkDimension.png|24px]].
[[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.
==Comment faire==
# Sélectionnez les points ou les arêtes qui définissent votre mesure.
# Appuyez sur le bouton{{KEY|[[Image:Dimension_Vertical.png|24px]] [[TechDraw Dimension Vertical|Dimension Verticale]]}}
# Une dimension sera ajoutée à la vue. La dimension peut être traînée à la position désirée.


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


[[Image:TechDraw_Dimension_Vertical_example.png|220px]]
==Propriétés==
{{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