Mesh Import: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 29: Line 29:
<!--T:6-->
<!--T:6-->
The '''Mesh Import''' supports: bms, stl, ast, iv, nas, bdf, obj, smf, off and ply files.
The '''Mesh Import''' supports: bms, stl, ast, iv, nas, bdf, obj, smf, off and ply files.
For NASTRAN nas/bdf file, Only GRID, CTRIA3 and CQUAD4 cards are supported. In each data line, a space must exist between two variables.
For NASTRAN nas/bdf file, only GRID, CTRIA3 and CQUAD4 cards are supported. In each data line, a space must exist between two variables.


==Usage== <!--T:7-->
==Usage== <!--T:7-->

Revision as of 05:39, 22 September 2021

Mesh Import

Menu location
Meshes → Import mesh...
Workbenches
Mesh
Default shortcut
None
Introduced in version
-
See also
Std Import, Std Open, Import Export

Description

The Mesh Import command imports geometry from a mesh file format into the active document. Several file formats are supported. The command creates a non-parametric mesh object, a Mesh Feature.

Supported file types

The Mesh Import supports: bms, stl, ast, iv, nas, bdf, obj, smf, off and ply files. For NASTRAN nas/bdf file, only GRID, CTRIA3 and CQUAD4 cards are supported. In each data line, a space must exist between two variables.

Usage

  1. There are several ways to invoke the command:
    • Press the Mesh Import button.
    • Select the Meshes → Import mesh... option from the menu.
    • Select the Import mesh... option from the Tree view context menu or 3D view context menu. This option is only available if an existing mesh object has been selected. Note that the selected object is actually not used or modified by the command.
  2. Optionally select the correct file format in the dialog box.
  3. Select a file.
  4. Press the Open button.

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