TechDraw AngleDimension/fr: Difference between revisions

From FreeCAD Documentation
No edit summary
(Replaced content with "==Description==")
Line 2: Line 2:
{{GuiCommand/fr|Name=TechDraw Dimension Angle|Name/fr=Dimension d'Angle|MenuLocation=TechDraw → Dimension d'Angle|Workbenches=[[TechDraw Module/fr|TechDraw]]|SeeAlso=[[TechDraw Dimension Angle3Pt]]}}
{{GuiCommand/fr|Name=TechDraw Dimension Angle|Name/fr=Dimension d'Angle|MenuLocation=TechDraw → Dimension d'Angle|Workbenches=[[TechDraw Module/fr|TechDraw]]|SeeAlso=[[TechDraw Dimension Angle3Pt]]}}


<div class="mw-translate-fuzzy">
==Description==
==Description==
L'outil Dimension d'Angle ajoute une dimension angulaire à une vue. La dimension peut être l'angle intérieur entre deux bords rectilignes quelconques. La dimension sera initialement l'angle projeté (c.-à-d. comme indiqué sur le dessin), mais elle peut être remplacée par l'angle 3D réel à l'aide de l'outil {{Button|[[Image:TechDraw_Dimension_Link.svg|16px]] Lier une Cote à une géométrie 3D}}.
[[File:AngleSample.png|200px|center]]
</div>


The Dimension Angle tool adds a angular dimension to a View. The dimension may be the interior angle between any two straight line edges. The angle will initially be the projected angle (ie as shown on the drawing), but this may be changed to the actual 3D angle using the {{Button|[[Image:TechDraw_Dimension_Link.svg|16px]] [[TechDraw_Dimension_Link|Link Dimension]]}} tool.
The Dimension Angle tool adds a angular dimension to a View. The dimension may be the interior angle between any two straight line edges. The angle will initially be the projected angle (ie as shown on the drawing), but this may be changed to the actual 3D angle using the {{Button|[[Image:TechDraw_Dimension_Link.svg|16px]] [[TechDraw_Dimension_Link|Link Dimension]]}} tool.

Revision as of 15:04, 7 January 2019

Dimension d'Angle

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

Description

The Dimension Angle tool adds a angular dimension to a View. The dimension may be the interior angle between any two straight line edges. The angle will initially be the projected angle (ie as shown on the drawing), but this may be changed to the actual 3D angle using the Link Dimension tool.

Measuring the angle between two straight lines

Comment faire

  1. Sélectionnez les points ou les arêtes qui définissent votre mesure.
  2. Appuyez sur le boutonFile:Dimension Angle.png Dimension d'Angle
  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 Angle.png Dimension Angle 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 dimensions d'angle peuvent être ajoutées aux Pages en utilisant le code Python.

See also: TechDraw API and FreeCAD Scripting Basics.

The Dimension Angle 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 = "Angle"
dim1.References2D=[(view1, 'Edge1')]
rc = page.addView(dim1)