Draft Rotate/tr: Difference between revisions

From FreeCAD Documentation
(Created page with "# Döndürmek veya kopyalamak istediğiniz nesneleri seçin # {{KEY | 16px Döndür}} düğmesine basın veya {{KEY | R}} ard...")
(Created page with "== Seçenekler ==")
Line 16: Line 16:
# 3D görünümünde üçüncü bir noktaya tıklayın veya bir dönüş açısı verin
# 3D görünümünde üçüncü bir noktaya tıklayın veya bir dönüş açısı verin


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


* Press {{KEY|X}}, {{KEY|Y}} or {{KEY|Z}} after a point to constrain the next point on the given axis.
* Press {{KEY|X}}, {{KEY|Y}} or {{KEY|Z}} after a point to constrain the next point on the given axis.

Revision as of 11:59, 7 January 2019

Döndür

Menü konumu
Taslak → Döndür
Tezgahlar
Taslak, Yapı
Varsayılan kısayol
R O
Versiyonda tanıtıldı
-
Ayrıca bkz
Hiçbiri

Tanım

Bu araç, seçilen nesneleri geçerli Çalışma düzlemi üzerindeki bir nokta etrafında belirli bir açı ile döndürür veya kopyalar. Hiçbir nesne seçilmezse, birini seçmeye davet edilirsiniz.

Nasıl kullanılır

  1. Döndürmek veya kopyalamak istediğiniz nesneleri seçin
  2. Döndür düğmesine basın veya R ardından O tuşlarına basın
  3. 3D görünümünde bir merkez noktasını tıklatın veya bir koordinat yazın
  4. 3D görünümünde ikinci bir noktaya tıklayın veya bir referans açısı verin
  5. 3D görünümünde üçüncü bir noktaya tıklayın veya bir dönüş açısı verin

Seçenekler

  • Press X, Y or Z after a point to constrain the next point on the given axis.
  • To enter coordinates manually, simply enter the numbers, then press ENTER between each X, Y and Z component.
  • Press T or click the checkbox to check/uncheck the Continue button. If continue mode is on, the Rotate tool will restart after you finish or close it, allowing you to rotate or copy the objects another time without pressing the Rotate button again.
  • Pressing ALT or C or clicking the Copy button will make a copy of the objects, instead of rotating them. If you keep ALT pressed after clicking the third point, you will be able to place more copies, until you release the ALT key.
  • Press CTRL while drawing to force snapping your point to the nearest snap location, independently of the distance.
  • Press SHIFT while drawing to constrain your next point horizontally or vertically in relation to the rotation center.
  • Press ESC or the Cancel button to abort the current command.

Scripting

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

rotate (FreeCAD.Object or list, angle, [center], [axis] ,[copymode])
  • Rotates the given object or the objects contained in the given list with the given angle around the given center if provided, using axis as a rotation axis.
  • If axis is omitted, the rotation will be around the vertical Z axis.
  • If copymode is True, the actual objects are not moved, but copies are created instead.
  • Returns the objects (or their copies is copymode was True).

Example:

import FreeCAD,Draft
Draft.rotate(FreeCAD.ActiveDocument.ActiveObject,45)