|
Menu location |
---|
TechDraw → Dimensions → Insert Radius Dimension |
Workbenches |
TechDraw |
Default shortcut |
None |
Introduced in version |
- |
See also |
TechDraw DiameterDimension |
The TechDraw RadiusDimension tool adds a radius dimension to a View. The dimension may be applied to any edge which is a circle or circular arc.
Measuring a circle, indicating the radius
Single tool
(default): press the down arrow to the right of the To change the properties of a dimension object either double-click it in the drawing or in the Tree view. This will open the Dimension dialog.
Dimension objects are vulnerable to the "topological naming problem". See TechDraw LengthDimension.
See also: Autogenerated API documentation and FreeCAD Scripting Basics.
The Radius Dimension 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 = "Radius"
dim1.References2D=[(view1, "Edge1")]
page.addView(dim1)