MATLAB Help Center
Apply rigid transformation to surface mesh
Since R2022b
transform(mesh,tform)
transform(mesh,tform) applies the rigid 3-D transformation specified by tform to the surface mesh mesh.
mesh
tform
example
collapse all
Define mesh vertices for a surface mesh.
vertices = [1 -1 1; 1 1 1; -1 1 1; -1 -1 1; ... 1 -1 -1; 1 1 -1; -1 1 -1; -1 -1 -1];
Define the mesh faces using the vertices.
faces = [6 2 1; 1 5 6; 8 4 3; 3 7 8; 6 7 3; 3 2 6; ... 5 1 4; 4 8 5; 4 1 2; 2 3 4; 7 6 5; 5 8 7];
Create and display the surface mesh.
mesh = surfaceMesh(vertices,faces); surfaceMeshShow(mesh,Title="Original Mesh")
Define rotation and translation values, then use them to generate a transformation matrix.
theta = 30; rotationMat = [cosd(theta) sind(theta) 0; -sind(theta) cosd(theta) 0; 0 0 1]; translationVector = [2 0 0]; tform = rigidtform3d(rotationMat,translationVector);
Apply the rigid transformation and visualize the output.
transform(mesh,tform); surfaceMeshShow(mesh,Title="Transformed Mesh")
surfaceMesh
Surface mesh, specified as a surfaceMesh object.
rigidtform3d
Rigid 3-D transformation matrix, specified as a rigidtform3d object.
Introduced in R2022b
surfaceMesh | translate | rotate | scale | crop | simplify | subdivide
translate
rotate
scale
crop
simplify
subdivide
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
Europe
Asia Pacific
Contact your local office