Draft OCA/es: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{docnav|[[Draft_SVG|SVG]]|[[Draft_DAT|Airfoil Data Format .DAT]]|[[Draft_Module|Draft Module]]|IconC=Workbench_Draft.svg}}


{{Docnav
{{GuiCommand
|[[Draft_SVG|Scalable Vector Graphics .SVG]]
|Name=Draft OCA
|[[Draft_DAT|Airfoil Data Format .DAT]]
|MenuLocation=File → Export → Open CAD format (*.oca)
|Workbenches=[[Draft Workbench|Draft]]
|[[Draft_Workbench|Draft]]
|IconL=
|Shortcut=Ctrl+E
|IconR=
|SeeAlso=[[Draft SVG]], [[Draft DXF]]
|IconC=Workbench_Draft.svg
|Empty=1
}}
}}


{{TOCright}}
== Description ==
This function imports OCA/GCAD files. The [http://groups.google.com/group/open_cad_format OCA file format] is community effort to create a free, simple and open CAD file format.


==Description==
OCA is largely based on the GCAD file format generated from [http://www.gcad3d.org/ gCAD3D]. Both formats can be imported in FreeCAD, and the OCA files exported by FreeCAD can be opened in gCAD3D.

Draft OCA is a software module used by the [[File:Std_Open.svg|24px]] [[Std_Open|Std Open]], [[File:Std_Import.svg|24px]] [[Std_Import|Std Import]] and [[File:Std_Export.svg|24px]] [[Std_Export|Std Export]] commands to handle the [http://groups.google.com/group/open_cad_format OCA file format].

The OCA file format is a community effort to create a free, simple and open CAD file format. OCA is largely based on the GCAD file format generated from [http://www.gcad3d.org/ gCAD3D]. Both formats can be imported in FreeCAD, and the OCA files exported by FreeCAD can be opened in gCAD3D.


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 22: Line 24:
</div>
</div>


<div class="mw-translate-fuzzy">
De momento se importan los siguientes objetos de OCA:
De momento se importan los siguientes objetos de OCA:


Line 27: Line 30:
* Arcos y Circunferencias
* Arcos y Circunferencias
* Áreas cerradas
* Áreas cerradas

<div class="mw-translate-fuzzy">
===Importación===

Trabaja del mismo modo que la apertura pero crea los objetos en el documento activo en lugar de crear uno nuevo.
</div>
</div>


Line 43: Line 41:
* Caras
* Caras
</div>
</div>

The following FreeCAD objects can be exported:
* Lines and wires (polylines)
* Arcs and circles
* Faces


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 52: Line 55:
</div>
</div>


See [[Import_Export_Preferences|Import Export Preferences]].
== Scripting ==

{{Emphasis|See also:}} [[Draft API]] and [[FreeCAD Scripting Basics]].
==Scripting==

See also: [https://freecad.github.io/SourceDoc/ Autogenerated API documentation] and [[FreeCAD Scripting Basics|FreeCAD Scripting Basics]].

To export objects to OCA use the {{incode|export}} method of the importOCA module.


You can export elements to OCA by using the following function:
{{Code|code=
{{Code|code=
importOCA.export(exportList, filename)
importOCA.export(exportList, filename)
}}
}}

* For the Windows OS: use a {{FileName|/}} (forward slash) as the path separator in {{Incode|filename}}.


Example:
Example:

{{Code|code=
{{Code|code=
import FreeCAD, Draft, importOCA
import FreeCAD as App
import Draft
import importOCA


doc = App.newDocument()
p1 = FreeCAD.Vector(0, 0, 0)
p2 = FreeCAD.Vector(1000, 1000, 0)
p3 = FreeCAD.Vector(2200, 1500, 0)
p4 = FreeCAD.Vector(2500, -100, 0)


obj1 = Draft.makeWire([p1, p2, p3, p4])
polygon1 = Draft.make_polygon(3, radius=500)
obj2 = Draft.makeWire([p1, -2.3*p2, -0.8*p3, -1.8*p4])
polygon2 = Draft.make_polygon(5, radius=1500)


doc.recompute()
objects = [obj1, obj2]


objects = [polygon1, polygon2]
importOCA.export(objects, "/home/user/Pictures/myfile.oca")
importOCA.export(objects, "/home/user/Pictures/myfile.oca")
}}
}}



<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 83: Line 94:
{{Draft Tools navi{{#translation:}}}}
{{Draft Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
[[Category:File Formats{{#translation:}}]]
{{clear}}

Latest revision as of 08:04, 15 September 2021

Description

Draft OCA is a software module used by the Std Open, Std Import and Std Export commands to handle the OCA file format.

The OCA file format is a community effort to create a free, simple and open CAD file format. OCA is largely based on the GCAD file format generated from gCAD3D. Both formats can be imported in FreeCAD, and the OCA files exported by FreeCAD can be opened in gCAD3D.

Apertura

Esta función importa archivos OCA/GCAD. El formato de archivo OCA es un esfuerzo de la comunidad de crear un formato de archivo de abierto, simple y libre. OCA está basado en el formato de archivo GCAD generado por gCAD3D. Ambos formatos se pueden importan en FreeCAD, y los archivos OCA exportados por FreeCAD se pueden abrir en gCAD3D.

De momento se importan los siguientes objetos de OCA:

  • Líneas
  • Arcos y Circunferencias
  • Áreas cerradas

Exportación

Los objetos que se pueden exportar de momento son:

  • Líneas y wires (polilíneas)
  • Arcos y circunferecias
  • Caras

The following FreeCAD objects can be exported:

  • Lines and wires (polylines)
  • Arcs and circles
  • Faces

Preferencias

Los siguientes parámetros se pueden especificar en la pestaña de Preferencias (menú Editar -> Preferencias -> Croquis):

  • Importar áreas cerradas o no

See Import Export Preferences.

Scripting

See also: Autogenerated API documentation and FreeCAD Scripting Basics.

To export objects to OCA use the export method of the importOCA module.

importOCA.export(exportList, filename)
  • For the Windows OS: use a / (forward slash) as the path separator in filename.

Example:

import FreeCAD as App
import Draft
import importOCA

doc = App.newDocument()

polygon1 = Draft.make_polygon(3, radius=500)
polygon2 = Draft.make_polygon(5, radius=1500)

doc.recompute()

objects = [polygon1, polygon2]
importOCA.export(objects, "/home/user/Pictures/myfile.oca")