Mesh SectionByPlane: Difference between revisions

From FreeCAD Documentation
(Marked this version for translation)
(Button text.)
 
(8 intermediate revisions by 2 users not shown)
Line 4: Line 4:
<!--T:1-->
<!--T:1-->
{{Docnav
{{Docnav
|[[Mesh_TrimByPlane|Mesh TrimByPlane]]
|[[Mesh_TrimByPlane|TrimByPlane]]
|[[Mesh_CrossSections|Mesh CrossSections]]
|[[Mesh_CrossSections|CrossSections]]
|[[Mesh_Workbench|Mesh]]
|[[Mesh_Workbench|Mesh]]
|IconL=
|IconL=Mesh_TrimByPlane.svg
|IconR=
|IconR=Mesh_CrossSections.svg
|IconC=Workbench_Mesh.svg
|IconC=Workbench_Mesh.svg
}}
}}
Line 15: Line 15:
{{GuiCommand
{{GuiCommand
|Name=Mesh SectionByPlane
|Name=Mesh SectionByPlane
|Empty=1
|MenuLocation=Meshes → Cutting → Create section from mesh and plane
|MenuLocation=Meshes → Cutting → Create section from mesh and plane
|Workbenches=[[Mesh_Workbench|Mesh]]
|Workbenches=[[Mesh_Workbench|Mesh]]
Line 30: Line 29:
<!--T:6-->
<!--T:6-->
# Select a single mesh object and a single [[Part_Primitives|Part plane]]. The (extended) plane should intersect the mesh object.
# Select a single mesh object and a single [[Part_Primitives|Part plane]]. The (extended) plane should intersect the mesh object.
# There are several ways to invoke the command:
# Select the {{MenuCommand|Meshes → Cutting → Create section from mesh and plane}} option from the menu.
#* Press the {{Button|[[Image:Mesh_SectionByPlane.svg|16px]] [[Mesh_SectionByPlane|Create section from mesh and plane]]}} button.
#* Select the {{MenuCommand|Meshes → Cutting → [[Image:Mesh_SectionByPlane.svg|16px]] Create section from mesh and plane}} option from the menu.


==Properties== <!--T:7-->
==Properties== <!--T:7-->
Line 36: Line 37:
<!--T:8-->
<!--T:8-->
See: [[Part_Feature|Part Feature]].
See: [[Part_Feature|Part Feature]].

==Scripting== <!--T:10-->

<!--T:11-->
See also: [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].

<!--T:12-->
To section a mesh use its {{incode|section}} method. The method requires a second mesh object that need not be planar.

</translate>
{{Code|code=
import FreeCAD as App
import Mesh
import Part

# Create a non-parametric box-shaped mesh:
msh = App.ActiveDocument.addObject("Mesh::Feature", "Mesh")
msh.Mesh = Mesh.createBox(30, 40, 50)
msh.ViewObject.DisplayMode = "Flat Lines"

# Create a planar mesh from 3 points:
p1 = App.Vector(-20, -60, 0)
p2 = App.Vector(65, 25, 0)
p3 = App.Vector(-20, 25, 0)
msh_plane = Mesh.Mesh([p1, p2, p3])

# Find the section loops (each loop is a list of points):
loops = msh.Mesh.section(msh_plane)

# Show the loop polygon:
Part.show(Part.makePolygon(loops[0]))
}}
<translate>




<!--T:9-->
<!--T:9-->
{{Docnav
{{Docnav
|[[Mesh_TrimByPlane|Mesh TrimByPlane]]
|[[Mesh_TrimByPlane|TrimByPlane]]
|[[Mesh_CrossSections|Mesh CrossSections]]
|[[Mesh_CrossSections|CrossSections]]
|[[Mesh_Workbench|Mesh]]
|[[Mesh_Workbench|Mesh]]
|IconL=
|IconL=Mesh_TrimByPlane.svg
|IconR=
|IconR=Mesh_CrossSections.svg
|IconC=Workbench_Mesh.svg
|IconC=Workbench_Mesh.svg
}}
}}
Line 51: Line 85:
{{Mesh Tools navi{{#translation:}}}}
{{Mesh Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Latest revision as of 16:44, 25 November 2023

Other languages:

Mesh SectionByPlane

Menu location
Meshes → Cutting → Create section from mesh and plane
Workbenches
Mesh
Default shortcut
None
Introduced in version
-
See also
Mesh CrossSections

Description

The Mesh SectionByPlane command creates a cross section across a mesh object. The cross section is a Part Feature.

Usage

  1. Select a single mesh object and a single Part plane. The (extended) plane should intersect the mesh object.
  2. There are several ways to invoke the command:

Properties

See: Part Feature.

Scripting

See also: FreeCAD Scripting Basics.

To section a mesh use its section method. The method requires a second mesh object that need not be planar.

import FreeCAD as App
import Mesh
import Part

# Create a non-parametric box-shaped mesh:
msh = App.ActiveDocument.addObject("Mesh::Feature", "Mesh")
msh.Mesh = Mesh.createBox(30, 40, 50)
msh.ViewObject.DisplayMode = "Flat Lines"

# Create a planar mesh from 3 points:
p1 = App.Vector(-20, -60, 0)
p2 = App.Vector(65, 25, 0)
p3 = App.Vector(-20, 25, 0)
msh_plane = Mesh.Mesh([p1, p2, p3])

# Find the section loops (each loop is a list of points):
loops = msh.Mesh.section(msh_plane)

# Show the loop polygon:
Part.show(Part.makePolygon(loops[0]))