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)
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Docnav| |[[Mesh Export|Export Mesh]]|[[Mesh_Workbench|Mesh]]|IconC=Workbench_Mesh.svg|IconR=Mesh_ExportMesh.png}}


{{Docnav
|
|[[Mesh_Export|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ók → Háló importálása|Workbenches=[[Mesh Workbench|Háló]]|SeeAlso=[[Std_Import|Std Import]]}}
{{GuiCommand|Name=Mesh ImportMesh|MenuLocation=Hálók → Háló importálása|Workbenches=[[Mesh Workbench|Háló]]|SeeAlso=[[Std_Import|Std Import]]}}
</div>


<span id="Description"></span>
==Bemutatás==
<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>


<span id="Usage"></span>
<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
==Használat==
==Használat==
Line 17: Line 33:
</div>
</div>


==Supported file formats==
==Hivatkozások==

The command supports: stl, ast, bms, obj, off, iv, ply, nas and bdf files. For the NASTRAN (nas/bdf) file format, only GRID, CTRIA3 and CQUAD4 cards are supported.

==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=
<br />
import Mesh
Mesh.insert('D:/testfiles/cylinder.stl')
}}


{{Docnav| |[[Mesh Export|Export Mesh]]|[[Mesh_Workbench|Mesh]]|IconC=Workbench_Mesh.svg|IconR=Mesh_ExportMesh.png}}


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


{{Mesh Tools navi{{#translation:}}}}
{{Userdocnavi}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Latest revision as of 13:15, 26 November 2023

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.

Supported file formats

The command supports: stl, ast, bms, obj, off, iv, ply, nas and bdf files. For the NASTRAN (nas/bdf) file format, only GRID, CTRIA3 and CQUAD4 cards are supported.

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