|
Menu location |
---|
Draft → Line |
Workbenches |
Draft, Arch |
Default shortcut |
L I |
See also |
Draft Wire |
The Line tool creates a straight, two-points line in the current work plane. It takes the linewidth and color previously set on the Tasks tab. The Line tool behaves exactly like the Draft Wire tool, except that it stops after two points.
The Line tool can by used in macros and from the python console by using the following function:
makeLine (Vector, Vector)
Example:
import FreeCAD, Draft Draft.makeLine(FreeCAD.Vector(0,0,0),FreeCAD.Vector(2,0,0))