Draft Dimension

Draft Dimension.png Draft Dimension

Menu location
Draft → Dimension
Workbenches
Draft, Arch
Default shortcut
D I
See also
FlipDimension


Description

The dimension tool creates a dimension in the current document with two points defining the distance to measure, and a third point specifying where the dimension line passes.

Screenshot Draft Dimension.jpg

How to use

  1. Press the Draft Dimension.png Draft Dimension button, or press D then I keys
  2. Click a point on the 3D view, or type a coordinate
  3. Click a second point on the 3D view, or type a coordinate
  4. Click a third on the 3D view, or type a coordinate

Available dimension types

Options

Properties


Scripting

The Dimension tool can by used in macros and from the python console by using the following functions:

makeDimension (p1,p2,[p3]) 

or

makeDimension (object,i1,i2,p3) 

or

makeDimension (objlist,indices,p3) 
  1. (p1,p2,p3): creates a standard dimension from p1 to p2.
  2. (object,i1,i2,p3): creates a linked dimension to the given object, measuring the distance between its vertices indexed i1 and i2.
  3. (object,i1,mode,p3): creates a linked dimension to the given object, i1 is the index of the (curved) edge to measure, and mode is either "radius" or "diameter". Returns the newly created object.
makeAngularDimension (center,[angle1,angle2],p3) 

Example:

import FreeCAD,Draft
p1 = FreeCAD.Vector(0,0,0)
p2 = FreeCAD.Vector(1,1,0)
p3 = FreeCAD.Vector(2,0,0)
Draft.makeDimension(p1,p2,p3) 

Links

Online version: "http://www.freecadweb.org/wiki/index.php?title=Draft_Dimension&oldid=285212"

Navigation menu