|
|
| Menu location |
|---|
| Meshes → Scale |
| Workbenches |
| Mesh |
| Default shortcut |
| None |
| Introduced in version |
| - |
| See also |
| None |
The Mesh Scale command scales mesh objects.
0.See also: FreeCAD Scripting Basics.
To scale a mesh use its transformGeometry method.
import FreeCAD as App
import Mesh
# Create a non-parametric box-shaped mesh:
msh = App.ActiveDocument.addObject("Mesh::Feature", "Mesh")
msh.Mesh = Mesh.createBox(10, 10, 10)
msh.ViewObject.DisplayMode = "Flat Lines"
# Create and scale a matrix:
mat = App.Matrix()
mat.scale(2.0, 3.0, 4.0) # Unequal scaling.
# We need to work on a copy of the msh.Mesh object:
new_msh = msh.Mesh.copy()
# Transform that copy:
new_msh.transformGeometry(mat)
# Update msh.Mesh:
msh.Mesh = new_msh