Mesh Import/hu: Difference between revisions

From FreeCAD Documentation
(Created page with "Ez az eszköz lehetővé teszi egy [https://en.wikipedia.org/wiki/STL_(file_format) *.STL], [https://en.wikipedia.org/wiki/STL_(file_format)#ASCII_STL *.AST], *.BMS, [https:/...")
(Updating to match new version of source page)
(16 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{GuiCommand|Name=Mesh ImportMesh‏‎|MenuLocation=MeshesImport Mesh|Workbenches=[[Mesh Workbench|Mesh]]|SeeAlso=[[Std_Import|Std Import]]}}


{{Docnav
==Bemutatás==
|
|[[Mesh_Export|Mesh Export]]
|[[Mesh_Workbench|Mesh]]
|IconL=
|IconR=Mesh_Export.svg
|IconC=Workbench_Mesh.svg
}}


<div class="mw-translate-fuzzy">
{{GuiCommand|Name=Mesh ImportMesh|MenuLocation=HálókHáló importálása|Workbenches=[[Mesh Workbench|Háló]]|SeeAlso=[[Std_Import|Std Import]]}}
</div>

<div class="mw-translate-fuzzy">
==Bemutatás==
</div>

<div class="mw-translate-fuzzy">
Ez az eszköz lehetővé teszi egy [https://en.wikipedia.org/wiki/STL_(file_format) *.STL], [https://en.wikipedia.org/wiki/STL_(file_format)#ASCII_STL *.AST], *.BMS, [https://en.wikipedia.org/wiki/Wavefront_.obj_file *.OBJ], [http://en.wikipedia.org/wiki/OFF *.OFF], [http://web.mit.edu/ivlib/www/iv/files.html *.iv], [https://en.wikipedia.org/wiki/PLY_(file_format) *.PLY] fájl hozzáadását a jelenlegi dokumentumhoz.
Ez az eszköz lehetővé teszi egy [https://en.wikipedia.org/wiki/STL_(file_format) *.STL], [https://en.wikipedia.org/wiki/STL_(file_format)#ASCII_STL *.AST], *.BMS, [https://en.wikipedia.org/wiki/Wavefront_.obj_file *.OBJ], [http://en.wikipedia.org/wiki/OFF *.OFF], [http://web.mit.edu/ivlib/www/iv/files.html *.iv], [https://en.wikipedia.org/wiki/PLY_(file_format) *.PLY] fájl hozzáadását a jelenlegi dokumentumhoz.
</div>

<div class="mw-translate-fuzzy">
==Használat==
</div>

<div class="mw-translate-fuzzy">
# Kattintson a [[Image:Mesh_ImportMesh.png|32px]] ikonra vagy válassza a {{KEY|Hálók}} → {{KEY|[[Image:Mesh ImportMesh.png|24px]] Háló importálása…}} menüpontot a felső menüből.
# Válassza ki az importálandó fájlt.
</div>

==Preferences==

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

==Properties==

See: [[Mesh_Feature|Mesh Feature]].

==Scripting==

See also: [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

To import a mesh file use the {{incode|insert}} method of the Mesh module.


{{Code|code=
==Use==
import Mesh
Mesh.insert('D:/testfiles/cylinder.stl')
}}


# Click on [[Image:Mesh_ImportMesh.png|32px]] or choose {{KEY|Mesh}} → {{KEY|[[Image:Mesh ImportMesh.png|24px]] Import Mesh...}} from the top menu.
# Select the file to be imported


{{Docnav
==Links==
|
|[[Mesh_Export|Mesh Export]]
|[[Mesh_Workbench|Mesh]]
|IconL=
|IconR=Mesh_Export.svg
|IconC=Workbench_Mesh.svg
}}


{{Mesh Tools navi{{#translation:}}}}
<br />
{{Userdocnavi{{#translation:}}}}
{{clear}}

Revision as of 21:11, 21 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.

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