Taslak Elips

From FreeCAD Documentation
Revision as of 11:43, 3 January 2019 by Skywalker21 (talk | contribs) (Created page with "== Seçenekler ==")

Elips

Menü konumu
Taslak → Elips
Tezgahlar
Taslak, Yapı
Varsayılan kısayol
E L
Versiyonda tanıtıldı
-
Ayrıca bkz
Çember

Tanım

Elips aracı, elipsin sığacağı dikdörtgen bir kutunun köşesini tanımlayarak iki nokta girerek mevcut Çalışma düzlemi içinde bir elips oluşturur. Görevler sekmesinde önceden ayarlanmış olan Çizgi stili alır.

Nasıl kullanılır

  1. Elips tuşuna basın veya başka bir kullanım olarak önce E tuşuna sonra L basın.
  2. Başlangıç noktası için 3D alanda bir yeri tıklayın veya Koordinat girin.
  3. Bitiş noktası için 3D alanda bir yeri tıklayın veya Koordinat girin.

Seçenekler

  • 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 Ellipse tool will restart after you give the second point, allowing you to draw another ellipse without pressing the Ellipse button again.
  • 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 second point horizontally or vertically in relation to the first one.
  • Press I or the Filled button to have the ellipse filled with a face after it has been closed
  • Press ESC or the Cancel button to abort the command.
  • Ellipses, when in "Flat Lines" display mode, can display a hatch pattern, by setting their "Pattern" property below.

Properties

  • VeriMajor Radius: The major radius of the ellipse
  • VeriMinor Radius: The minor radius of the ellipse
  • VeriMake Face: Fills the ellipse with a face
  • GörünümPattern: Specifies a hatch pattern to fill the ellipse with
  • GörünümPattern Size: Specifies the size of the hatch pattern

See also Draft Pattern page.

Scripting

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

makeEllipse (majorradius, minorradius, [placement], [facemode])
  • Creates an ellipse object with given major and minor radius.
  • If a placement is given, it is used.
  • If facemode is False, the ellipse is shown as a wireframe, otherwise as a face.
  • Returns the newly created object.

Example:

import Draft
myEllipse = Draft.makeEllipse(4,2)