Mesh Import/ro: Difference between revisions

From FreeCAD Documentation
(Created page with "==Introducere==")
(Updating to match new version of source page)
 
(17 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{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=Meshes → Import Mesh|Workbenches=[[Mesh Workbench|Mesh]]|SeeAlso=[[Std_Import|Std Import]]}}
{{GuiCommand|Name=Mesh ImportMesh‏‎|MenuLocation=Meshes → Import Mesh|Workbenches=[[Mesh Workbench|Mesh]]|SeeAlso=[[Std_Import|Std Import]]}}
</div>

<span id="Description"></span>
<div class="mw-translate-fuzzy">
==Introducere==
</div>

<div class="mw-translate-fuzzy">
Acest instrument permite importați un obiect mesh ca fișier [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] from the current document.
</div>

<span id="Usage"></span>
<div class="mw-translate-fuzzy">
==Utilizare==
</div>

<div class="mw-translate-fuzzy">
# Faceți clic pe[[Image:Mesh_ImportMesh.png|32px]] or choose {{KEY|Mesh}} → {{KEY|[[Image:Mesh ImportMesh.png|24px]] Import Mesh...}} din meniul principal.
# Selectați fișierul de importat
</div>

==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: {{MenuCommand|Tools → Edit parameters... → BaseApp → Preferences → General → FileOpenSavePath}}.

==Properties==

See: [[Mesh_Feature|Mesh Feature]].

==Scripting==


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


To import a mesh file use the {{incode|insert}} method of the Mesh module.
This tool allows you to add a file [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] to the current document.


{{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|Export]]
|[[Mesh_Workbench|Mesh]]
|IconL=
|IconR=Mesh_Export.svg
|IconC=Workbench_Mesh.svg
}}


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

Latest revision as of 13:15, 26 November 2023

Mesh ImportMesh‏‎

Menu location
Meshes → Import Mesh
Workbenches
Mesh
Default shortcut
None
Introduced in version
-
See also
Std Import

Introducere

Acest instrument vă permite să importați un obiect mesh ca fișier *.STL, *.AST, *.BMS, *.OBJ, *.OFF, *.iv, *.PLY from the current document.

Utilizare

  1. Faceți clic pe or choose Mesh Import Mesh... din meniul principal.
  2. Selectați fișierul de importat

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