Difference between revisions of "OpenSCAD ScaleMeshFeature"
Jump to navigation
Jump to search
User documentation
(Removed the icon below the Description paragraph.) |
(Module to Workbench renaming.) |
||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
|[[OpenSCAD_MirrorMeshFeature|Mirror Mesh Feature]] | |[[OpenSCAD_MirrorMeshFeature|Mirror Mesh Feature]] | ||
|[[OpenSCAD_ResizeMeshFeature|Resize Mesh Feature]] | |[[OpenSCAD_ResizeMeshFeature|Resize Mesh Feature]] | ||
− | |[[ | + | |[[OpenSCAD_Workbench|OpenSCAD]] |
|IconL=OpenSCAD_MirrorMeshFeature.svg | |IconL=OpenSCAD_MirrorMeshFeature.svg | ||
|IconR=OpenSCAD_ResizeMeshFeature.svg | |IconR=OpenSCAD_ResizeMeshFeature.svg | ||
Line 13: | Line 13: | ||
<!--T:2--> | <!--T:2--> | ||
{{GuiCommand | {{GuiCommand | ||
− | |Name=OpenSCAD | + | |Name=OpenSCAD ScaleMeshFeature |
|MenuLocation=OpenSCAD → Scale Mesh Feature | |MenuLocation=OpenSCAD → Scale Mesh Feature | ||
− | |Workbenches=[[ | + | |Workbenches=[[OpenSCAD_Workbench|OpenSCAD]] |
|SeeAlso=[[Mesh_Scale|Mesh Scale]] | |SeeAlso=[[Mesh_Scale|Mesh Scale]] | ||
}} | }} | ||
Line 56: | Line 56: | ||
|[[OpenSCAD_MirrorMeshFeature|Mirror Mesh Feature]] | |[[OpenSCAD_MirrorMeshFeature|Mirror Mesh Feature]] | ||
|[[OpenSCAD_ResizeMeshFeature|Resize Mesh Feature]] | |[[OpenSCAD_ResizeMeshFeature|Resize Mesh Feature]] | ||
− | |[[ | + | |[[OpenSCAD_Workbench|OpenSCAD]] |
|IconL=OpenSCAD_MirrorMeshFeature.svg | |IconL=OpenSCAD_MirrorMeshFeature.svg | ||
|IconR=OpenSCAD_ResizeMeshFeature.svg | |IconR=OpenSCAD_ResizeMeshFeature.svg |
Latest revision as of 12:35, 23 August 2021
|
Menu location |
---|
OpenSCAD → Scale Mesh Feature |
Workbenches |
OpenSCAD |
Default shortcut |
None |
Introduced in version |
- |
See also |
Mesh Scale |
Description
Creates a new scaled mesh object with independent scaling for each axis.
Usage
- Select the mesh object to be scaled.
- Click the OpenSCAD → Scale Mesh Feature... menu.
- Select the desired axis in the dialog, or enter your own custom axis to use and click OK.
- A new mesh object is created and scaled, the original object is rendered hidden.
Limitations
- The new mesh object is not parametric to the original mesh object, which means any changes to the original object do not get reflected in the new scaled object.
Notes
- The function does not modify the existing mesh, but returns a new mesh.
- The function can be accessed via python:
import OpenSCADUtils
import Mesh
#this assumes an existing object in the document named "Mesh" that you wish to scale
original_mesh = App.ActiveDocument.Mesh
scaled_mesh = OpenSCADUtils.scalemesh(original_mesh.Mesh, FreeCAD.Base.Vector(1,0,0))
Mesh.show(scaled_mesh)

- Getting started
- Installation: Download, Windows, Linux, Mac, Additional components, Docker, AppImage, Ubuntu Snap
- Basics: About FreeCAD, Interface, Mouse navigation, Selection methods, Object name, Preferences, Workbenches, Document structure, Properties, Help FreeCAD, Donate
- Help: Tutorials, Video tutorials
- Workbenches: Std Base, Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Points, Raytracing, Reverse Engineering, Sketcher, Spreadsheet, Start, Surface, TechDraw, Test Framework, Web
- Deprecated or unmaintained workbenches: Complete, Drawing, Robot
- Hubs: User hub, Power users hub, Developer hub