Draft OCA: Difference between revisions

From FreeCAD Documentation
(places the objects)
(Marked this version for translation)
 
(33 intermediate revisions by 6 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
<translate>
<translate>

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


</translate>
== Description ==
{{TOCright}}
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.
<translate>


==Description== <!--T:8-->
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.


== Opening == <!--T:1-->
<!--T:16-->
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].

<!--T:9-->
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.

==Importing== <!--T:1-->


<!--T:2-->
<!--T:2-->
The following OCA objects get imported at the moment:
The following OCA objects can be imported:
* Lines
* Lines
* Arcs and Circles
* Arcs and Circles
* Closed areas
* Closed areas


== Importing == <!--T:3-->
==Exporting== <!--T:4-->
Works the same way as opening but places the objects in the active document instead of creating a new one.


== Exporting == <!--T:4-->
<!--T:17-->
Objects that can be exported at the moment:
The following FreeCAD objects can be exported:
* Lines and wires (polylines)
* Lines and wires (polylines)
* Arcs and circles
* Arcs and circles
* Faces
* Faces


== Preferences == <!--T:5-->
==Preferences== <!--T:5-->
The following parameters can be specified in the [[Draft Preferences]] tab (menu Edit -> Preferences -> Draft):
* Import closed areas or not


<!--T:18-->
== Scripting ==
See [[Import_Export_Preferences|Import Export Preferences]].
{{Emphasis|See also:}} [[Draft API]] and [[FreeCAD Scripting Basics]].

==Scripting== <!--T:19-->

<!--T:10-->
See also: [https://freecad.github.io/SourceDoc/ Autogenerated API documentation] and [[FreeCAD Scripting Basics|FreeCAD Scripting Basics]].

<!--T:11-->
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:
</translate>
</translate>
{{Code|code=
{{Code|code=
Line 46: Line 59:
<translate>
<translate>


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

<!--T:12-->
Example:
Example:

</translate>
</translate>
{{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")
}}
}}
<translate>
<translate>



<!--T:6-->
<!--T:6-->
{{Docnav
{{Draft Tools navi}}
|[[Draft_SVG|Scalable Vector Graphics .SVG]]
{{Userdocnavi}}
|[[Draft_DAT|Airfoil Data Format .DAT]]
|[[Draft_Workbench|Draft]]
|IconL=
|IconR=
|IconC=Workbench_Draft.svg
}}

</translate>
</translate>
{{Draft Tools navi{{#translation:}}}}
{{clear}}
{{Userdocnavi{{#translation:}}}}
[[Category:File Formats{{#translation:}}]]

Latest revision as of 08:03, 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.

Importing

The following OCA objects can be imported:

  • Lines
  • Arcs and Circles
  • Closed areas

Exporting

The following FreeCAD objects can be exported:

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

Preferences

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")