Mesh Import/it: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
 
(26 intermediate revisions by 3 users not shown)
Line 3: Line 3:
{{Docnav/it
{{Docnav/it
|
|
|[[Mesh_Export/it|Esporta mesh]]
|[[Mesh_Export/it|Esporta]]
|[[Mesh_Workbench/it|Mesh]]
|[[Mesh_Workbench/it|Mesh]]
|IconL=
|IconL=
Line 18: Line 18:
}}
}}


<span id="Description"></span>
==Descrizione==
==Descrizione==


Il comando '''Importa mesh''' importa la geometria da un formato file mesh nel documento attivo. Sono supportati diversi formati di file. Il comando crea un oggetto mesh non parametrico, una [[Mesh_Feature/it|Mesh Feature]].
<div class="mw-translate-fuzzy">
Questo strumento consente di aggiungere un 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] al documento corrente.
</div>


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


# Esistono diversi modi per invocare il comando:
<div class="mw-translate-fuzzy">
# Cliccare su [[Image:Mesh_ImportMesh.png|32px]] o scegliere {{KEY|Mesh}} → {{KEY|[[Image:Mesh ImportMesh.png|24px]] Importa mesh...}} dal menu principale.
#* Premere il pulsante {{Button|[[Image:Mesh_Import.svg|16px]] [[Mesh_Import/it|Importa mesh...]]}}.
#* Selezionare l'opzione {{MenuCommand|Mesh → [[Image:Mesh_Import.svg|16px]] Importa mesh...}} dal menu.
# Selezionare il file da importare.
#* Selezionare l'opzione {{MenuCommand|[[Image:Mesh_Import.svg|16px]] Importa mesh...}} dal menu contestuale della [[Tree_view/it|vista ad albero]] o della [[3D_view/it|vista 3D]]. Questa opzione è disponibile solo se è stato selezionato un oggetto mesh esistente. Notare che l'oggetto selezionato non viene effettivamente utilizzato o modificato dal comando.
</div>
# Facoltativamente, selezionare il formato file corretto nella finestra di dialogo.
# Selezionare un file.
# Premere il pulsante {{Button|Apri}}.


<span id="Supported_file_formats"></span>
==Options==
==Formati di file supportati==


Il comando supporta: file stl, ast, bms, obj, off, iv, ply, nas e bdf. Per il formato file NASTRAN (nas/bdf), sono supportate solo le schede GRID, CTRIA3 e CQUAD4.
* Press {{KEY|Esc}} or the {{Button|Cancel}} button to abort the command.


==Preferences==
<span id="Preferences"></span>
==Preferenze==


* The last used file location is stored: {{MenuCommand|ToolsEdit parameters... → BaseApp → Preferences → General → FileOpenSavePath}}.
* L'ultima posizione del file utilizzato viene memorizzata in: {{MenuCommand|StrumentiModifica parametri... → BaseApp → Preferences → General → FileOpenSavePath}}.


==Properties==
<span id="Properties"></span>
==Proprietà==


See [[Mesh_Feature|Mesh Feature]].
Vedere: [[Mesh_Feature/it|Mesh Feature]].


==Scripting==
<span id="Scripting"></span>
==Script==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
Vedere anche: [[FreeCAD Scripting Basics/it|Script di base per FreeCAD]]


To import a mesh file use the {{incode|insert}} method of the Mesh module.
Per importare un file mesh utilizzare il metodo {{incode|insert}} del modulo Mesh.


{{Code|code=
{{Code|code=
Line 56: Line 61:
}}
}}



<div class="mw-translate-fuzzy">
{{Docnav/it
{{Docnav/it| |[[Mesh Export/it|Esporta mesh]]|[[Mesh_Workbench/it|Mesh]]|IconC=Workbench_Mesh.svg|IconR=Mesh_ExportMesh.png}}
|
</div>
|[[Mesh_Export/it|Esporta]]
|[[Mesh_Workbench/it|Mesh]]
|IconL=
|IconR=Mesh_Export.svg
|IconC=Workbench_Mesh.svg
}}


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

Latest revision as of 23:31, 29 November 2023

Importa mesh

Posizione nel menu
Mesh → Importa mesh...
Ambiente
Mesh
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Importa, Apri, Importazione e Esportazione

Descrizione

Il comando Importa mesh importa la geometria da un formato file mesh nel documento attivo. Sono supportati diversi formati di file. Il comando crea un oggetto mesh non parametrico, una Mesh Feature.

Utilizzo

  1. Esistono diversi modi per invocare il comando:
    • Premere il pulsante Importa mesh....
    • Selezionare l'opzione Mesh → Importa mesh... dal menu.
    • Selezionare l'opzione Importa mesh... dal menu contestuale della vista ad albero o della vista 3D. Questa opzione è disponibile solo se è stato selezionato un oggetto mesh esistente. Notare che l'oggetto selezionato non viene effettivamente utilizzato o modificato dal comando.
  2. Facoltativamente, selezionare il formato file corretto nella finestra di dialogo.
  3. Selezionare un file.
  4. Premere il pulsante Apri.

Formati di file supportati

Il comando supporta: file stl, ast, bms, obj, off, iv, ply, nas e bdf. Per il formato file NASTRAN (nas/bdf), sono supportate solo le schede GRID, CTRIA3 e CQUAD4.

Preferenze

  • L'ultima posizione del file utilizzato viene memorizzata in: Strumenti → Modifica parametri... → BaseApp → Preferences → General → FileOpenSavePath.

Proprietà

Vedere: Mesh Feature.

Script

Vedere anche: Script di base per FreeCAD

Per importare un file mesh utilizzare il metodo insert del modulo Mesh.

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