OpenSCAD ResizeMeshFeature: Difference between revisions

From FreeCAD Documentation
No edit summary
mNo edit summary
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
<translate>
<translate>

<!--T:10-->
<!--T:10-->
{{Docnav
{{Docnav
|[[OpenSCAD_ScaleMeshFeature|Scale Mesh Feature]]
|[[OpenSCAD_ScaleMeshFeature|Scale Mesh Feature]]
|[[OpenSCAD_IncreaseTolerance|Increase Tolerance Feature]]
|[[OpenSCAD_IncreaseToleranceFeature|Increase Tolerance Feature]]
|[[OpenSCAD_Module|OpenSCAD]]
|[[OpenSCAD_Workbench|OpenSCAD]]
|IconL=OpenSCAD ScaleMesh.svg
|IconL=OpenSCAD_ScaleMeshFeature.svg
|IconC=Workbench_OpenSCAD.svg
|IconR=OpenSCAD_IncreaseToleranceFeature.svg
|IconR=OpenSCAD_IncreaseToleranceFeature.svg
|IconC=Workbench_OpenSCAD.svg
}}
}}


Line 15: Line 16:
|Name=OpenSCAD ResizeMeshFeature
|Name=OpenSCAD ResizeMeshFeature
|MenuLocation=OpenSCAD → Resize Mesh Feature
|MenuLocation=OpenSCAD → Resize Mesh Feature
|Workbenches=[[OpenSCAD_Module|OpenSCAD]]
|Workbenches=[[OpenSCAD_Workbench|OpenSCAD]]
}}
}}


Line 23: Line 24:
Creates a new resized mesh object with independent sizing for each axis.
Creates a new resized mesh object with independent sizing for each axis.


</translate>

<translate>
==Usage== <!--T:15-->
==Usage== <!--T:15-->


<!--T:5-->
<!--T:5-->
# Select the mesh object to be resized.
# Select the mesh object to be resized.
# Click the {{KEY|OpenSCAD → Scale Resize Feature...}} menu.
# Click the {{KEY| OpenSCAD}} {{KEY|[[Image:OpenSCAD_ResizeMeshFeature.svg|24px]] Scale Resize Feature...}} menu.
# Select the desired axis in the dialog, or enter your own custom axis to use and click OK.
# 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 resized, the original object is rendered hidden.
* A new mesh object is created and resized, the original object is rendered hidden.
Line 43: Line 41:
<!--T:7-->
<!--T:7-->
* The function does not modify the existing mesh, but returns a new mesh.
* The function does not modify the existing mesh, but returns a new mesh.
* The function can be accessed via python:
* The function can be accessed via Python:

</translate>
{{Code|code=
{{Code|code=
import OpenSCADUtils
import OpenSCADUtils
Line 53: Line 53:
Mesh.show(resized_mesh)
Mesh.show(resized_mesh)
}}
}}
<translate>






Line 60: Line 59:
{{Docnav
{{Docnav
|[[OpenSCAD_ScaleMeshFeature|Scale Mesh Feature]]
|[[OpenSCAD_ScaleMeshFeature|Scale Mesh Feature]]
|[[OpenSCAD_IncreaseTolerance|Increase Tolerance Feature]]
|[[OpenSCAD_IncreaseToleranceFeature|Increase Tolerance Feature]]
|[[OpenSCAD_Module|OpenSCAD]]
|[[OpenSCAD_Workbench|OpenSCAD]]
|IconL=OpenSCAD ScaleMesh.svg
|IconL=OpenSCAD_ScaleMeshFeature.svg
|IconR=OpenSCAD_IncreaseToleranceFeature.svg
|IconC=Workbench_OpenSCAD.svg
|IconC=Workbench_OpenSCAD.svg
|IconR=OpenSCAD_IncreaseToleranceFeature.svg
}}
}}



Latest revision as of 18:32, 26 December 2022

Other languages:

OpenSCAD ResizeMeshFeature

Menu location
OpenSCAD → Resize Mesh Feature
Workbenches
OpenSCAD
Default shortcut
None
Introduced in version
-
See also
None

Description

Creates a new resized mesh object with independent sizing for each axis.

Usage

  1. Select the mesh object to be resized.
  2. Click the OpenSCAD Scale Resize Feature... menu.
  3. 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 resized, 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 mirrored 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 mirror
original_mesh = App.ActiveDocument.Mesh
resized_mesh = OpenSCADUtils.resizemesh(original_mesh.Mesh, FreeCAD.Base.Vector(100,50,40))
#New mesh would be 100 mm on the x axis, 50 mm on the y axis, and 40 mm on the z axis.
Mesh.show(resized_mesh)