Draft Ellipse/ro: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 25: Line 25:
==Proprietăți==
==Proprietăți==


* {{PropertyData|Major Radius}}: The major radius of the ellipse
* {{PropertyData|Major Radius}}: Raza majoră a elipsei
* {{PropertyData|Minor Radius}}: The minor radius of the ellipse
* {{PropertyData|Minor Radius}}: Raza minoră a elipsei
* {{PropertyData|Make Face}}: Fills the ellipse with a face
* {{PropertyData|Make Face}}: Umple elipsa cu o gațetă
* {{PropertyView|Pattern}}: Specifies a hatch pattern to fill the ellipse with
* {{PropertyView|Pattern}}: Specificați modelul de hașură pentru a umple elipsa cu el
* {{PropertyView|Pattern Size}}: Specifies the size of the hatch pattern
* {{PropertyView|Pattern Size}}: specificați modelul și mărimea hașurii


See also [[Draft Pattern|Draft Pattern]] page.
See also [[Draft Pattern|Draft Pattern]] page.

Revision as of 12:57, 6 August 2018

Draft Ellipse

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

Description

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.

How to use

  1. Press the Draft Ellipse button, or press E then L keys
  2. Click a first point on the 3D view, or type a coordinate
  3. Click a second point on the 3D view, or type a 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.

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)