Draft Ellipse/es

From FreeCAD Documentation
Revision as of 07:30, 29 November 2018 by Luc (talk | contribs) (Created page with "====Utilización==== # Presiona el botón {{KEY|16px Draft Ellipse}}, o presiona las teclas {{KEY|C}} y {{KEY|I}} # Selecciona un primer punto...")

Draft Ellipse

Ubicación en el Menú
Draft → Ellipse
Entornos de trabajo
Draft, Arch
Atajo de teclado por defecto
E L
Introducido en versión
-
Ver también
Draft Circle

Descripción

La herramienta Elipse crea una elipse en el actual work plane ingresando dos puntos, definiendo la esquina de un cuadro rectangular en el que encajará la elipse. Toma el linewidth and color previamente establecido en la pestaña Tareas.

Utilización

  1. Presiona el botón Draft Ellipse, o presiona las teclas C y I
  2. Selecciona un primer punto en la vista 3D, o escribe una coordenadas
  3. Selecciona un segundo punto en la vista 3D, o escribe una coordenadas

Options

  • 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

  • DatosMajor Radius: The major radius of the ellipse
  • DatosMinor Radius: The minor radius of the ellipse
  • DatosMake Face: Fills the ellipse with a face
  • VistaPattern: Specifies a hatch pattern to fill the ellipse with
  • VistaPattern 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)