Elipsă 2D

From FreeCAD Documentation
Revision as of 19:20, 16 August 2018 by Renatorivo (talk | contribs)

Draft Ellipse

Menu location
Draft → Ellipse
Workbenches
Draft, Arch
Default shortcut
E L
Introduced in version
-
See also
Draft Circle

Descriere

Instrumentul Ellipse creează o eliptsă în planul curent work plane introducând două puncte, definind colțul unei casete rectangulare în care se va potrivi elipsa. Este nevoie de linewidth and color setată anterior pe fila Activități.

Cum se utilizează

  1. Apăsați butonul {{KEY | Draft Ellipse} sau apăsați E apoi tastele {{KEY |
  2. Faceți clic pe un prim punct din vizualizarea 3D sau tastați un coordinate
  3. Faceți clic pe un al doilea punct din vizualizarea 3D sau tastați un coordinate

Options

  • Pentru a introduce manual coordonatele, pur și simplu introduceți numerele, apoi apăsați 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.

Proprietăți

  • DateMajor Radius: Raza majoră a elipsei
  • DateMinor Radius: Raza minoră a elipsei
  • DateMake Face: Umple elipsa cu o gațetă
  • VizualizarePattern: Specificați modelul de hașură pentru a umple elipsa cu el
  • VizualizarePattern Size: specificați modelul și mărimea hașurii

See also Draft Pattern page.

Scripturi

Instrumentul Ellipse poate fi folosit în macros și din consola python utilizând următoarea funcție:

makeEllipse (majorradius, minorradius, [placement], [facemode])
  • Creează un obiect elipsă cu o rază majoră și minoră dată.
  • Dacă este dată o destinație de plasare, este utilizată.
  • Dacă facemode este False, elipsa este arătată ca un cadru de sârmă, altfel ca o fațetă.
  • Returnează obiectul nou creat.

Example:

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