Mesh Export/de: Difference between revisions

From FreeCAD Documentation
(Created page with "==Anwendung==")
(Created page with "{{GuiCommand/de |Name=Mesh Export |Name/de=Polygonnetz Export |MenuLocation=Polygonnetze → Polygonnetz exportieren... |Workbenches=Polygonnetz |SeeAlso...")
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/de
|Name=Mesh Export
|Name=Mesh Export
|MenuLocation=Meshes → Export mesh...
|Name/de=Polygonnetz Export
|MenuLocation=Polygonnetze → Polygonnetz exportieren...
|Workbenches=[[Mesh_Workbench|Mesh]]
|Workbenches=[[Mesh_Workbench/de|Polygonnetz]]
|SeeAlso=[[Std_Export|Std Export]], [[Import_Export|Import Export]]
|SeeAlso=[[Std_Export/de|Std Export]], [[Import_Export/de|Import Export]]
}}
}}



Revision as of 12:42, 10 May 2021

Polygonnetz Export

Menüeintrag
Polygonnetze → Polygonnetz exportieren...
Arbeitsbereich
Polygonnetz
Standardtastenkürzel
Keiner
Eingeführt in Version
-
Siehe auch
Std Export, Import Export

Beschreibung

The Mesh Export command exports a mesh object to a mesh file format. Several file formats are supported.

Anwendung

  1. Select a single mesh object.
  2. There are several ways to invoke the command:
    • Press the Mesh Export button.
    • Select the Meshes → Export mesh... option from the menu.
    • Select the Export mesh... option from the Tree view context menu or 3D view context menu.
  3. Select the correct file format in the dialog box.
  4. Enter a filename. If you have selected the All files (*.*) option in the previous step, and do not specify a file extension here, the .stl extension will be used.
  5. Press the Save button.

Hinweise

Einstellungen

  • The last used file location is stored: Tools → Edit parameters... → BaseApp → Preferences → General → FileOpenSavePath.

Skripten

See also: FreeCAD Scripting Basics.

To export objects (including mesh objects) to a mesh file format use the export method of the Mesh module.

import FreeCAD
import Mesh

doc = FreeCAD.ActiveDocument

Mesh.export([doc.Cone, doc.Cylinder], 'D:/testfiles/mymodel.stl')