|
Ubicación en el Menú |
---|
Croquis → Arco |
Entornos de trabajo |
Croquis, Arquitectura |
Atajo de teclado por defecto |
A R |
Introducido en versión |
- |
Ver también |
Circunferencia |
La herramienta arco crea un arco en el plano de trabajo actual introduciendo cuatro puntos, el centro, el radio, el primer punto y el último punto, o seleccionando tangencias, o cualquier combinación de ellas. Toma el espesor de línea y color previamente definidos en la pestaña de tareas. Esta herramienta funciona del mismo modo que la herramienta circunferencia, pero añade los ángulos inicial y final.
The Draft Arc command creates a circular arc on the current working plane from a center, a radius, a start angle and an aperture angle. The radius and the angles can be defined by picking points.
A Draft Arc is in fact a Draft Circle with a DatosFirst Angle that is not the same as its DatosLast Angle.
See also: Draft Tray, Draft Snap and Draft Constrain.
The single character keyboard shortcuts available in the task panel can be changed. See Draft Preferences. The shortcuts mentioned here are the default shortcuts (for version 1.0).
See also: Preferences Editor and Draft Preferences.
La herramienta circunferencia también se puede utilizar para crear arco en macros y desde la consola de Python utilizando la siguiente instrucción, con los argumentos adicionales dados:
To create a Draft Arc use the make_circle
method (introduced in version 0.19) of the Draft module. This method replaces the deprecated makeCircle
method.
Example:
import FreeCAD as App
import Draft
doc = App.newDocument()
arc1 = Draft.make_circle(200, startangle=0, endangle=90)
arc2 = Draft.make_circle(500, startangle=20, endangle=160)
arc3 = Draft.make_circle(750, startangle=-30, endangle=-150)
doc.recompute()