Draft Point/tr: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
(40 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
{{Docnav
|[[Draft_BSpline|BSpline]]
|[[Draft_ShapeString|ShapeString]]
|[[Draft_Module|Draft]]
|IconL=Draft_BSpline.svg
|IconC=Workbench_Draft.svg
|IconR=Draft_ShapeString.svg
}}

<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
{{GuiCommand/tr
{{GuiCommand/tr|Name=Draft Point|Name/tr=Draft Point|Workbenches=[[Draft Module/tr|Draft]], [[Arch Module/tr|Arch]]|MenuLocation=Draft -> Point|Shortcut=P T}}
|Name=Draft Point
|Name/tr=Nokta
|Workbenches=[[Draft Module/tr|Taslak]], [[Arch Module/tr|Yapı]]
|MenuLocation=Taslak → Nokta
|Shortcut=P T
|SeeAlso=[[Draft Line/tr|Çizgi]], [[Draft Wire/tr|Tel]]
|Version=0.17
}}
</div>
</div>


==Description==
== Tanım ==


<div class="mw-translate-fuzzy">
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.
Nokta aracı, geçerli [[Draft SelectPlane/tr|Ç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. [[Draft Tray/tr|Taslak Tepsi]] 'de ayarlanan [[Draft Linestyle/tr|Çizgi stili]] ayarlarını alır.
</div>


[[Image:Draft_point_example.jpg|400px]]
[[Image:Draft_point_example.jpg|400px]]
{{Caption|A single point placed on the working plane}}


<div class="mw-translate-fuzzy">
==How to use==
== Nasıl Kullanılır ==
</div>


<div class="mw-translate-fuzzy">
# 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 görünümünde bir noktaya tıklayın veya bir [[Draft_Coordinates/tr|koordinat]] yazın ve {{Button|[[Image: Draft_AddPoint.svg | 16px]] [[Draft_AddPoint/tr|Nokta ekle]]}} düğmesine basın.
</div>


==Options==
== Seçenekler ==


* Koordinatları manuel olarak girmek için sayıları girin, ardından her bir X, Y ve Z bileşeni arasında {{KEY|Enter}} tuşuna basın. Noktayı yerleştirmek istediğiniz değerleri aldığınızda {{Button|[[Image: Draft_AddPoint.svg|16px]] [[Draft_AddPoint/tr|Nokta ekle]]}} düğmesine basabilirsiniz.
* To enter coordinates manually, simply enter the numbers, then press {{KEY|ENTER}} between each X, Y and Z component.
* '''Devam''' moduna geçmek için {{KEY|T}} tuşuna basın veya onay kutusunu tıklayın. Devam modu açıksa, nokta aracı siz bir noktaya yerleştirdikten sonra yeniden başlatılır ve araç düğmesine tekrar basmadan bir tane daha yerleştirmenizi sağlar.
* Press {{KEY|ESC}} or the {{KEY|'''Cancel'''}} button to abort the current Line command.
* Geçerli komutu iptal etmek için {{KEY|Esc}} veya {{Button|Close}} düğmesine basınız.


==Properties==
== Özellikler ==


* {{PropertyData|X}}: The X coordinate of the point
* {{PropertyData/tr|X}}: Noktanın X koordinatı
* {{PropertyData|Y}}: The Y coordinate of the point
* {{PropertyData/tr|Y}}: Noktanın Y koordinatı
* {{PropertyData|Z}}: The Z coordinate of the point
* {{PropertyData/tr|Z}}: Noktanın Z koordinatı


<div class="mw-translate-fuzzy">
==Scripting==
== Betik ==
{{Emphasis|Ayrıca bkz.:}} [[Draft API/tr|Taslak API]] ve [[FreeCAD Scripting Basics/tr|FreeCAD Betik esasları]].
</div>


<div class="mw-translate-fuzzy">
The Point tool can by used in [[macros]] and from the python console by using the following function:
Nokta aracı, aşağıdaki işlevi kullanarak [[macros/tr|makrolar]] ve [[Python/tr|Python]] konsolundan kullanılabilir:
</div>
{{Code|code=
{{Code|code=
Point = makePoint(X=0, Y=0, Z=0, color=None, name="Point", point_size=5)
makePoint([x],[y],[z])
Point = makePoint(point, Y=0, Z=0, color=None, name="Point", point_size=5)
}}
}}

* 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.
* Belirtilen {{incode|X}}, {{incode|Y}} ve {{incode|Z}} koordinatlarında, birimler milimetre cinsinden bir {{incode|Point}} nesnesi oluşturur. Eğer koordinat verilmezse, başlangıç noktasında nokta oluşturulur (0,0,0). *
* Eğer {{incode|X}} bir {{incode|FreeCAD.Vector}} tarafından tanımlanan bir {{incode|point}} ise, kullanılır.
* {{incode|color}}, {{incode|(R, G, B)}} bir skaladır; nokta, RGB ölçeğindeki noktanın rengini gösterir; Bağlantıdaki her değer, {{incode|0}} ila {{incode|1}} aralığında olmalıdır.
* {{incode|name}}, nesnenin adıdır.
* {{incode|point_size}}, grafiksel kullanıcı arayüzü yüklendiğinde nesnenin piksel cinsinden boyutudur.


Example:
Example:
{{Code|code=
{{Code|code=
import FreeCAD
import Draft
import Draft

Draft.makePoint(6,4,2)
Point1 = Draft.makePoint(1600, 1400, 0)

p2 = FreeCAD.Vector(-3200, 1800, 0)
Point2 = Draft.makePoint(p2, color=(0.5, 0.3, 0.6), point_size=10)
FreeCAD.ActiveDocument.recompute()
}}
}}
Örnek:


This code creates {{incode|N}} random points within a square of side {{incode|2L}}. It makes a loop creating {{incode|N}} points, that may appear anywhere from {{incode|-L}} to {{incode|+L}} on both X and Y; it also chooses a random color and size for each point. Change {{incode|N}} to change the number of points, and change {{incode|L}} to change the area covered by the points.

{{Code|code=
import random
import FreeCAD
import Draft

L = 1000
centered = FreeCAD.Placement(FreeCAD.Vector(-L, -L, 0), FreeCAD.Rotation())
Rectangle = Draft.makeRectangle(2*L, 2*L, placement=centered)
N = 10

for i in range(N):
x = 2*L*random.random() - L
y = 2*L*random.random() - L
z = 0
r = random.random()
g = random.random()
b = random.random()
size = 15*random.random() + 5
Draft.makePoint(x, y, z, color=(r, g, b), point_size=size)

FreeCAD.ActiveDocument.recompute()
}}

<div class="mw-translate-fuzzy">
{{Draft Tools navi/tr}}
{{Userdocnavi/tr}}
</div>

{{Draft Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}
{{clear}}
<languages/>

Revision as of 20:41, 21 February 2020

Nokta

Menü konumu
Taslak → Nokta
Tezgahlar
Taslak, Yapı
Varsayılan kısayol
P T
Versiyonda tanıtıldı
0.17
Ayrıca bkz
Çizgi, Tel

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. Taslak Tepsi 'de ayarlanan Çizgi stili ayarlarını alır.

A single point placed on the working plane

Nasıl Kullanılır

  1. Nokta tuşuna veya P basın ardından T basın.
  2. 3D görünümünde bir noktaya tıklayın veya bir koordinat yazın ve Nokta ekle düğmesine basın.

Seçenekler

  • Koordinatları manuel olarak girmek için sayıları girin, ardından her bir X, Y ve Z bileşeni arasında Enter tuşuna basın. Noktayı yerleştirmek istediğiniz değerleri aldığınızda Nokta ekle düğmesine basabilirsiniz.
  • Devam moduna geçmek için T tuşuna basın veya onay kutusunu tıklayın. Devam modu açıksa, nokta aracı siz bir noktaya yerleştirdikten sonra yeniden başlatılır ve araç düğmesine tekrar basmadan bir tane daha yerleştirmenizi sağlar.
  • Geçerli komutu iptal etmek için Esc veya Close düğmesine basınız.

Özellikler

  • VERİX: Noktanın X koordinatı
  • VERİY: Noktanın Y koordinatı
  • VERİZ: Noktanın Z koordinatı

Betik

Ayrıca bkz.: Taslak API ve FreeCAD Betik esasları.

Nokta aracı, aşağıdaki işlevi kullanarak makrolar ve Python konsolundan kullanılabilir:

Point = makePoint(X=0, Y=0, Z=0, color=None, name="Point", point_size=5)
Point = makePoint(point, Y=0, Z=0, color=None, name="Point", point_size=5)
  • Belirtilen X, Y ve Z koordinatlarında, birimler milimetre cinsinden bir Point nesnesi oluşturur. Eğer koordinat verilmezse, başlangıç noktasında nokta oluşturulur (0,0,0). *
  • Eğer X bir FreeCAD.Vector tarafından tanımlanan bir point ise, kullanılır.
  • color, (R, G, B) bir skaladır; nokta, RGB ölçeğindeki noktanın rengini gösterir; Bağlantıdaki her değer, 0 ila 1 aralığında olmalıdır.
  • name, nesnenin adıdır.
  • point_size, grafiksel kullanıcı arayüzü yüklendiğinde nesnenin piksel cinsinden boyutudur.

Example:

import FreeCAD
import Draft

Point1 = Draft.makePoint(1600, 1400, 0)

p2 = FreeCAD.Vector(-3200, 1800, 0)
Point2 = Draft.makePoint(p2, color=(0.5, 0.3, 0.6), point_size=10)
FreeCAD.ActiveDocument.recompute()

Örnek:

This code creates N random points within a square of side 2L. It makes a loop creating N points, that may appear anywhere from -L to +L on both X and Y; it also chooses a random color and size for each point. Change N to change the number of points, and change L to change the area covered by the points.

import random
import FreeCAD
import Draft

L = 1000
centered = FreeCAD.Placement(FreeCAD.Vector(-L, -L, 0), FreeCAD.Rotation())
Rectangle = Draft.makeRectangle(2*L, 2*L, placement=centered)
N = 10

for i in range(N):
    x = 2*L*random.random() - L
    y = 2*L*random.random() - L
    z = 0
    r = random.random()
    g = random.random()
    b = random.random()
    size = 15*random.random() + 5
    Draft.makePoint(x, y, z, color=(r, g, b), point_size=size)

FreeCAD.ActiveDocument.recompute()