Draft Point/tr: Difference between revisions

From FreeCAD Documentation
(Created page with "== Nasıl Kullanılır ==")
(Created page with "#{{KEY|16px Nokta}} tuşuna veya {{KEY|P}} basın ardından {{KEY|T}} basın. #3D alanda bir yere tıklayın veya Draft_Coordina...")
Line 11: Line 11:
== Nasıl Kullanılır ==
== Nasıl Kullanılır ==


# Press the {{KEY|[[Image:Draft Point.png|16px]] [[Draft Point]]}} button, or press {{KEY|P}} then {{KEY|T}} keys
#{{KEY|[[Image:Draft Point.png|16px]] [[Draft Point/tr|Nokta]]}} tuşuna veya {{KEY|P}} basın ardından {{KEY|T}} basın.
# Click a point on the 3D view, or type a [[Draft_Coordinates|coordinate]]
#3D alanda bir yere tıklayın veya [[Draft_Coordinates/tr|Koordinat]] yazın.


==Options==
==Options==

Revision as of 19:03, 3 January 2019

Nokta

Menü konumu
Taslak → Nokta
Tezgahlar
Taslak, Yapı
Varsayılan kısayol
P T
Versiyonda tanıtıldı
-
Ayrıca bkz
Hiçbiri

Tanım

Nokta aracı, geçerli Çalışma düzlemi içinde basit bir nokta yaratır, daha sonra başka nesnelerin yerleştirilmesi için referans olarak kullanılmaya elverişlidir. Görevler sekmesinde önceden ayarlanmış olan Çizgi stili ayarlarını alır.


Nasıl Kullanılır

  1. Nokta tuşuna veya P basın ardından T basın.
  2. 3D alanda bir yere tıklayın veya Koordinat yazın.

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

  • VeriX: The X coordinate of the point
  • VeriY: The Y coordinate of the point
  • VeriZ: 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)