FreeCAD Logo FreeCAD 1.0
  • English Afrikaans Arabic Belarusian Catalan Czech German Greek Spanish Spanish Basque Finnish Filipino French Galician Croatian Hungarian Indonesian Italian Japanese Kabyle Korean Lithuanian Dutch Norwegian Bokmal Polish Portuguese Portuguese Romanian Russian Slovak Slovenian Serbian Swedish Turkish Ukrainian Valencian Vietnamese Chinese Chinese
  • Features
  • Download
  • Blog
  • Documentation
    Documentation index Getting started Users documentation The FreeCAD manual Workbenches documentation Python coding documentation C++ coding documentation Tutorials Frequently asked questions Privacy policy About FreeCAD
  • Contribute
    How to help Sponsor Report a bug Make a pull request Jobs and funding Contribution guidelines Developers handbook Translations
  • Community
    Code of conduct Forum The FPA GitHub GitLab Codeberg Mastodon Matrix IRC IRC via Webchat Gitter Discord Reddit Twitter Facebook LinkedIn Calendar
  • ♥ Donate

Donate

$
SEPA Information
Please set up your SEPA bank transfer to:
Beneficiary: The FreeCAD project association
IBAN: BE04 0019 2896 4531
BIC/SWIFT: GEBABEBBXXX
Bank agency: BNP Paribas Fortis
Address: Rue de la Station 64, 1360 Perwez, Belgium

While Stripe doesn't support monthly donations, you can still become a sponsor! Simply make a one-time donation equivalent to 12 months of support, and you'll gain access to the corresponding sponsoring tier. It's an easy and flexible way to contribute.

If you are not sure or not able to commit to a regular donation, but still want to help the project, you can do a one-time donation, of any amount.

Choose freely the amount you wish to donate one time only.

You can support FreeCAD by sponsoring it as an individual or organization through various platforms. Sponsorship provides a steady income for developers, allowing the FPA to plan ahead and enabling greater investment in FreeCAD. To encourage sponsorship, we offer different tiers, and unless you choose to remain anonymous, your name or company logo will be featured on our website accordingly.

from 1 USD / 1 EUR per month. You will not have your name displayed here, but you will have helped the project a lot anyway. Together, normal sponsors maintain the project on its feet as much as the bigger sponsors.

from 25 USD / 25 EUR per month. Your name or company name is displayed on this page.

from 100 USD / 100 EUR per month. Your name or company name is displayed on this page, with a link to your website, and a one-line description text.

from 200 USD / 200 EUR per month. Your name or company name and logo displayed on this page, with a link to your website and a custom description text. Companies that have helped FreeCAD early on also appear under Gold sponsors.

Instead of donating each month, you might find it more comfortable to make a one-time donation that, when divided by twelve, would give you right to enter a sponsoring tier. Don't hesitate to do so!

Choose freely the amount you wish to donate each month.

Please inform your forum name or twitter handle as a notein your transfer, or reach to us, so we can give you proper credits!

Mesh Feature

Introduction

A Mesh Feature object, or formally a Mesh::Feature, is a simple element with an associated mesh object that can be displayed in the 3D view.

A Mesh Feature is similar conceptually to a Part Feature; the former is the base object for elements with \"mesh\" information, while the latter is the base object for elements with \"geometrical shape\" information.

Please note that the FEM Workbench also uses meshes, but it uses a different object, called FEM FemMeshObject (Fem::FemMeshObject class). This object is not derived from the Mesh Feature and has different properties.

Simplified diagram of the relationships between the core objects in FreeCAD

Usage

Almost all mesh objects created by the commands available in the Mesh Workbench are Mesh Features. The parametric mesh objects created by the Mesh BuildRegularSolid command are the only exception. A Mesh Feature can also be created from the Python console as described in the Scripting section.

The Mesh::Feature is defined in the Mesh Workbench but can be used as the base class for scripted objects in all workbenches that produce 2D and 3D meshes.

A Mesh::Feature has simple properties like a placement, and visual properties to define the appearance of its edges and faces.

Properties

See Property for all property types that scripted objects can have.

The Mesh Feature (Mesh::Feature class) is derived from the basic App GeoFeature (App::GeoFeature class) and inherits all its properties. It also has several additional properties. Notably a Mesh property, which stores its Mesh MeshObject. This is the geometry that is shown in the 3D view.

These are the properties available in the property editor. Hidden properties can be shown by using the Show all command in the context menu of the property editor.

Data

{{TitleProperty|Base}}

  • Proxy|PythonObject|Hidden: a custom class associated with this object. This only exists for the Python version. See Scripting.

  • Mesh|MeshKernel: a Mesh MeshObject class associated with this object. It lists the number of {{Value|Points}}, {{Value|Edges}}, and {{Value|Faces}} of the mesh.

  • Placement|Placement: the position of the object in the 3D view. The placement is defined by a Base point (vector), and a Rotation (axis and angle). See Placement.

  • Angle

    : the angle of rotation around the **Axis**. By default, it is {{value|0°}} (zero degrees).

-   
    **Axis**

    : the unit vector that defines the axis of rotation for the placement. Each component is a floating point value between {{value|0}} and {{value|1}}. If any value is above {{value|1}}, the vector is normalized so that the magnitude of the vector is {{value|1}}. By default, it is the positive Z axis, {{value|(0, 0, 1)}}.

-   
    **Position**

    : a vector with the 3D coordinates of the base point. By default, it is the origin {{value|(0, 0, 0)}}.
  • Label|String: the user editable name of this object, it is an arbitrary UTF8 string.

  • Label2|String|Hidden: a longer, user editable description of this object, it is an arbitrary UTF8 string that may include newlines. By default, it is an empty string {{value|""}}.

  • Expression Engine|ExpressionEngine|Hidden: a list of expressions. By default, it is empty {{value|[]}}.

  • Visibility|Bool|Hidden: whether to display the object or not.

View

{{TitleProperty|Base}}

  • Proxy|PythonObject|Hidden: a custom viewprovider class associated with this object. This only exists for the Python version. See Scripting.

{{TitleProperty|Display Options}}

  • Bounding Box|Bool: if it is True, the object will show the bounding box in the 3D view.

  • Display Mode|Enumeration: {{value|Shaded}} (no edges), {{value|Wireframe}} (no faces), {{value|Flat Lines}} (regular visualization), {{value|Points}} (only vertices).

  • Show In Tree|Bool: if it is True, the object appears in the Tree view. Otherwise, it is set as invisible.

  • Visibility|Bool: if it is True, the object appears in the 3D view; otherwise it is invisible. By default this property can be toggled on and off by pressing the Space bar.

{{TitleProperty|Object Style}}

  • Coloring|Bool|Hidden: it defaults to False.

  • Crease Angle|FloatConstraint:

  • Lighting|Enumeration: {{value|One side}} (default), {{value|Two side}}; the illumination comes from two sides or one side in the 3D view.

  • Line Color|Color: a tuple of three floating point RGB values completely black .

  • Line Transparency|Percent: an integer from {{value|0}} to {{value|100}} (a percentage) that determines the level of transparency of the edges in the 3D view. A value of {{value|100}} indicates completely invisible edges; the edges are invisible but they can still be picked as long as Selectable is True.

  • Line Width|FloatConstraint: a float that determines the width in pixels of the edges in the 3D view. It defaults to {{value|1.0}}.

  • Open Edges|Bool: it defaults to False.

  • Point Size|FloatConstraint: similar to Line Width, defines the size of the vertices.

  • Shape Color|Color: similar to light gray.

  • Shape Material|Material|Hidden: an App Material associated with this object. By default it is empty.

  • Transparency|Percent: an integer from {{value|0}} to {{value|100}} (a percentage) that determines the level of transparency of the faces in the 3D view. A value of {{value|100}} indicates completely invisible faces; the faces are invisible but they can still be picked as long as Selectable is True.

{{TitleProperty|Selection}}

  • On Top When Selected|Enumeration: {{value|Disabled}} (default), {{value|Enabled}}, {{value|Object}}, {{value|Element}}.

  • Selectable|Bool: if it is True, the object can be picked with the pointer in the 3D view. Otherwise, the object cannot be selected until this option is set to True.

  • Selection Style|Enumeration: {{value|Shape}} (default), {{value|BoundBox}}. If the option is {{value|Shape}}, the entire shape (vertices, edges, and faces) will be highlighted in the 3D view; if it is {{value|BoundBox}} only the bounding box will be highlighted.

Scripting

See also:

FreeCAD Scripting Basics and scripted objects.

See Part Feature for the general information on adding objects to the document.

A Mesh Feature is created with the addObject() method of the document.

import FreeCAD as App

doc = App.newDocument()
obj = App.ActiveDocument.addObject("Mesh::Feature", "Name")
obj.Label = "Custom label"

For Python subclassing you should create the Mesh::FeaturePython object.

import FreeCAD as App

doc = App.newDocument()
obj = App.ActiveDocument.addObject("Mesh::FeaturePython", "Name")
obj.Label = "Custom label"

⏵ documentation index > Glossary > Mesh > Mesh Feature

This page is retrieved from https://github.com/FreeCAD/FreeCAD-documentation/blob/main/wiki/Mesh_Feature.md

Get in touch!
Forum GitHub Mastodon Matrix IRC Gitter.im Discord Reddit Twitter Facebook LinkedIn

© The FreeCAD Team. Homepage image credits (top to bottom): ppemawm, r-frank, epileftric, regis, rider_mortagnais, bejant.

This project is supported by: , KiCad Services Corp. and other sponsors

GitHubImprove this page on GitHub