Mesh Import/hu: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 41: Line 41:
==Properties==
==Properties==


See [[Mesh_Feature|Mesh Feature]].
See: [[Mesh_Feature|Mesh Feature]].


==Scripting==
==Scripting==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
See also: [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].


To import a mesh file use the {{incode|insert}} method of the Mesh module.
To import a mesh file use the {{incode|insert}} method of the Mesh module.
Line 53: Line 53:
Mesh.insert('D:/testfiles/cylinder.stl')
Mesh.insert('D:/testfiles/cylinder.stl')
}}
}}



{{Docnav
{{Docnav

Revision as of 20:49, 19 July 2020

Mesh ImportMesh

Menu location
Hálók → Háló importálása
Workbenches
Háló
Default shortcut
None
Introduced in version
-
See also
Std Import

Bemutatás

Ez az eszköz lehetővé teszi egy *.STL, *.AST, *.BMS, *.OBJ, *.OFF, *.iv, *.PLY fájl hozzáadását a jelenlegi dokumentumhoz.

Használat

  1. Kattintson a ikonra vagy válassza a Hálók Háló importálása… menüpontot a felső menüből.
  2. Válassza ki az importálandó fájlt.

Options

  • Press Esc or the Cancel button to abort the command.

Preferences

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

Properties

See: Mesh Feature.

Scripting

See also: FreeCAD Scripting Basics.

To import a mesh file use the insert method of the Mesh module.

import Mesh
Mesh.insert('D:/testfiles/cylinder.stl')