Draft Point: Difference between revisions

From FreeCAD Documentation
No edit summary
(GuiCommand vertical. SeeAlso lines, to have something to link.)
Line 2: Line 2:
<translate>
<translate>
<!--T:1-->
<!--T:1-->
{{GuiCommand
{{GuiCommand|Name=Draft Point|Workbenches=[[Draft Module|Draft]], [[Arch Module|Arch]]|MenuLocation=Draft → Point|Shortcut=P T}}
|Name=Draft Point
|Workbenches=[[Draft Module|Draft]], [[Arch Module|Arch]]
|MenuLocation=Draft → Point
|Shortcut=P T
|SeeAlso=[[Draft Line]], [[Draft Wire]]}}


==Description== <!--T:2-->
==Description== <!--T:2-->


<!--T:3-->
<!--T:3-->
The Point tool creates a simple point in the current [[Draft SelectPlane|work plane]], handy to serve as reference for placing other objects later. It takes the [[Draft Linestyle|color]] previously set on the Tasks tab.
The Point tool creates a simple point in the current [[Draft SelectPlane|work plane]], handy to serve as reference for placing lines, wires, or other objects later. It uses the [[Draft Linestyle]] (only the color) set on the [[Draft Tray]].


<!--T:4-->
<!--T:4-->

Revision as of 04:02, 8 November 2018

Draft Point

Menu location
Draft → Point
Workbenches
Draft, Arch
Default shortcut
P T
Introduced in version
-
See also
Draft Line, Draft Wire

Description

The Point tool creates a simple point in the current work plane, handy to serve as reference for placing lines, wires, or other objects later. It uses the Draft Linestyle (only the color) set on the Draft Tray.

How to use

  1. Press the Draft Point button, or press P then T keys
  2. Click a point on the 3D view, or type a coordinate

Options

  • To enter coordinates manually, simply enter the numbers, then press ENTER between each X, Y and Z component.
  • Press ESC or the Cancel button to abort the current Line command.

Properties

  • DataX: The X coordinate of the point
  • DataY: The Y coordinate of the point
  • DataZ: The Z coordinate of the point

Scripting

The Point tool can by used in macros and from the python console by using the following function:

makePoint([x],[y],[z])
  • makes a point at the given coordinates. If no X, Y and Z coordinates are given, the point is created at (0,0,0). Returns the newly created object.

Example:

import Draft
Draft.makePoint(6,4,2)