Draft Point/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/ru |Name=Draft Point |Name/ru=Draft Point |Workbenches=Draft, Arch |MenuLocation=Черчение -> Точка |Shortcut=P...")
 
(Updating to match new version of source page)
Line 1: Line 1:
<div class="mw-translate-fuzzy">
{{GuiCommand/ru
{{GuiCommand/ru
|Name=Draft Point
|Name=Draft Point
Line 6: Line 7:
|Shortcut=P T
|Shortcut=P T
}}
}}
</div>


==Description==
==Description==

Revision as of 09:40, 3 May 2018

Draft Point

Системное название
Draft Point
Расположение в меню
Черчение -> Точка
Верстаки
Draft, Arch
Быстрые клавиши
P T
Представлено в версии
-
См. также
Нет

Description

The Point tool creates a simple point in the current work plane, handy to serve as reference for placing other objects later. It takes the color previously set on the Tasks tab.

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

  • ДанныеX: The X coordinate of the point
  • ДанныеY: The Y coordinate of the point
  • ДанныеZ: 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)