Method: RADMesh::STL#mirror_xz!
- Defined in:
- lib/radmesh/stl.rb
#mirror_xz! ⇒ STL
Note:
There is also the same method without ! working as expected. It is not in this reference guide, because it is automatically generated.
Mirror the mesh about the XZ plane.
Mirroring involves reversing the sign of all of the coordinates in a particular axis. For example, to mirror a mesh about the XY plane, the signs of all of the Z coordinates in the mesh are reversed.
504 505 506 507 |
# File 'lib/radmesh/stl.rb', line 504 def mirror_xz! CADMesh.stl_mirror_xz(@stl_ptr) self end |