Mesh Export/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "Istnieje kilka preferencji eksportu związanych z formatami siatki, ale nie dotyczą one tego polecenia. Są one używane przez...")
(Created page with "==Ustawienia==")
Line 37: Line 37:
Istnieje kilka [[Import_Export_Preferences/pl#Formaty_Siatki|preferencji eksportu związanych z formatami siatki]], ale nie dotyczą one tego polecenia. Są one używane przez polecenie [[Std_Export/pl|Std: Eksport]].
Istnieje kilka [[Import_Export_Preferences/pl#Formaty_Siatki|preferencji eksportu związanych z formatami siatki]], ale nie dotyczą one tego polecenia. Są one używane przez polecenie [[Std_Export/pl|Std: Eksport]].


==Preferences==
==Ustawienia==


* The last used file location is stored: {{MenuCommand|Tools → Edit parameters... → BaseApp → Preferences → General → FileOpenSavePath}}.
* The last used file location is stored: {{MenuCommand|Tools → Edit parameters... → BaseApp → Preferences → General → FileOpenSavePath}}.

Revision as of 16:10, 26 September 2022

Siatka: Eksportuj

Lokalizacja w menu
Siatki → Eksportuj siatkę ...
Środowisko pracy
Siatka
Domyślny skrót
brak
Wprowadzono w wersji
-
Zobacz także
Eksport, Import Eksport

Opis

Polecenie Eksportuj siatkę ... eksportuje obiekt siatkowy do formatu pliku siatkowego. Obsługiwanych jest kilka formatów plików.

Użycie

  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.

Uwagi

Istnieje kilka preferencji eksportu związanych z formatami siatki, ale nie dotyczą one tego polecenia. Są one używane przez polecenie Std: Eksport.

Ustawienia

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

Scripting

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