Drawing Workbench/es: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
No edit summary
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Docnav/es
{{Docnav|[[Draft Workbench|Draft Workbench]]|[[FEM Workbench|FEM Workbench]]|IconL=Workbench_Draft.svg|IconC=Online Help Toc.svg|
|[[Draft Workbench/es|Ambiente de trabajo Draft]]
IconR=Workbench_FEM.svg}}
|[[FEM Workbench/es|Ambiente de trabajo MEF]]
[[Image:Workbench_Drawing.svg|64px]]
|IconL=Workbench_Draft.svg

|IconC=Online Help Toc.svg
== Introduction ==
|IconR=Workbench_FEM.svg
}}


{{VeryImportantMessage|Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.}}
{{VeryImportantMessage|Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.}}

[[Image:Workbench_Drawing.svg|thumb|128px|El icono del Ambiente de trabajo Dibujar]]

== Introducción ==


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 13: Line 19:


{{TOCright}}
{{TOCright}}
[[Image:Drawing_extraction.png|800px]]
[[Image:Drawing_extraction.png|600px]]


== Herramientas ==
<div class="mw-translate-fuzzy">
== Herramientas GUI ==
</div>


Estas son las herramientas para la creación, configuración y exportación de hojas de dibujo 2D
Estas son las herramientas para la creación, configuración y exportación de hojas de dibujo 2D
Line 78: Line 82:
Some notes on the programming side of the drawing module will be added to the [[Drawing Documentation]] page. This is to help quickly understand how the drawing module works, enabling programmers to rapidly start programming for it.
Some notes on the programming side of the drawing module will be added to the [[Drawing Documentation]] page. This is to help quickly understand how the drawing module works, enabling programmers to rapidly start programming for it.


== Tutorials ==
== Tutoriales ==
* [[Drawing_tutorial|Drawing tutorial]]
[[Drawing_tutorial/es|Tutorial de dibujo]]


== External links ==
== Enlaces externos ==
* [https://www.youtube.com/watch?v=1Hm5Zyjmjac Intro to mechanical drawing on Youtube - by Normal Universe]
* [https://www.youtube.com/watch?v=1Hm5Zyjmjac Introducción al dibujo mecánico en Youtube - por el Universo Normal]

<div class="mw-translate-fuzzy">
{{docnav/es|Part Module/es|Raytracing Module/es}}
</div>


{{Docnav/es
{{Drawing Tools navi}}
|[[Draft Workbench/es|Ambiente de trabajo Draft]]
|[[FEM Workbench/es|Ambiente de trabajo MEF]]
|IconL=Workbench_Draft.svg
|IconC=Online Help Toc.svg
|IconR=Workbench_FEM.svg
}}


{{Drawing Tools navi{{#translation:}}}}
{{Userdocnavi}}
{{Userdocnavi{{#translation:}}}}
[[Category:Obsolete Workbenches]]
[[Category:Obsolete Workbenches{{#translation:}}]]

Revision as of 12:45, 2 September 2020

Development of the Drawing Workbench stopped in FreeCAD 0.16, and the new TechDraw Workbench aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.
El icono del Ambiente de trabajo Dibujar

Introducción

El módulo de Dibujo te permite poner en papel tu trabajo 3D. Es decir, sirve para poner vistas de tus modelos en una ventana 2D e insertar esas ventanas en un dibujo, por ejemplo una hoja con un formato, un título y tu logotipo y, finalmente, imprimir esa hoja. El módulo de Dibujo está en desarrollo y es más o menos una muestra de sus posibilidades!

Herramientas

Estas son las herramientas para la creación, configuración y exportación de hojas de dibujo 2D

  • Insertar una vista: Inserta una vista de los objetos seleccionados en la hoja de dibujo activa
  • Annotation: Adds an annotation to the current drawing sheet
  • Clip: Adds a clip group to the current drawing sheet
  • Open Browser: Opens a preview of the current sheet in the browser
  • Ortho Views: Automatically creates orthographic views of an object on the current drawing sheet
  • Symbol: Adds the contents of a SVG file as a symbol on the current drawing sheet
  • Draft View: Inserts a special Draft view of the selected object in the current drawing sheet
  • Spreadsheet View: Inserts a view of a selected spreadsheet in the current drawing sheet
  • Project Shape: Creates a projection of the selected object (Source) in the 3D view.

Nota La herramienta vista de boceto es utilizada principalmente para ubicar objetos boceto sobre papel. Tiene unas cuantas capacidades extras sobre las herramientas usuales de bocetos, y soporta objectos especificos como Dimensiones de boceto.

En la imagen se ven los principales elementos del módulo de Dibujo. El documento contiene un objeto forma (Schenkel) que queremos poner en papel. Para ello creamos una "Página". Una página se crea a partir de una plantilla, en este caso la plantilla "A3_apaisado". La plantilla es un documento SVG que puede contener la disposición habitual de tus dibujos, tu logotipo o los estándares que utilices.

En la página puedes insertar una o varias vistas. Cada vista tiene una posición en la página (Propiedades X, Y), un factor de escala (Propiedad escala) y propiedades adicionales. Cada vez que la página, o la vista, o el objeto referenciado cambia, la página se regenera y la visualización de la página se actualiza.

Archivos de guión

De momento, el interfaz (GUI) para el usuario final está poco desarrollado, por lo que los archivos de guión de la API son más interesantes. A continuación veremos ejemplos de cómo utilizar los archivos de guión de la API del módulo de Dibujo.

See the Drawing API example page for a description of the functions used to create drawing pages and views.

Aquí un guión que fácilmente puede llenar el Macro_CartoucheFC hoja FreeCAD A3_Landscape.

Plantillas

FreeCAD viene con un juego de plantillas básico, pero se pueden obtener más en la página Drawing templates/es.

Extending the Drawing Module

Some notes on the programming side of the drawing module will be added to the Drawing Documentation page. This is to help quickly understand how the drawing module works, enabling programmers to rapidly start programming for it.

Tutoriales

Tutorial de dibujo

Enlaces externos