Draft Point/ro: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 4: Line 4:
==Descriere==
==Descriere==


nstrumentul Punct creează un punct simplu în planul curent [[Draft SelectPlane|work plane]], util pentru a servi ca referință pentru plasarea mai multor obiecte mai târziu. Este nevoie de [[Draft Linestyle|color]] setat anterior pe fila Activități.
Instrumentul Punct creează un punct simplu în planul curent [[Draft SelectPlane|work plane]], util pentru a servi ca referință pentru plasarea mai multor obiecte mai târziu. Este nevoie de [[Draft Linestyle|color]] setat anterior pe fila Activități.


[[Image:Draft_point_example.jpg|400px]]
[[Image:Draft_point_example.jpg|400px]]

Revision as of 11:11, 7 August 2018

Draft Point

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

Descriere

Instrumentul Punct creează un punct simplu în planul curent work plane, util pentru a servi ca referință pentru plasarea mai multor obiecte mai târziu. Este nevoie de color setat anterior pe fila Activități.

Cum se folosește

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

Opţiuni

  • 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.

Proprietăți

  • DateX: The X coordinate of the point
  • DateY: The Y coordinate of the point
  • DateZ: The Z coordinate of the point

Scripturi

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.

Exempluː

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