Method: RADMesh::STL#mirror_xy!
- Defined in:
- lib/radmesh/stl.rb
#mirror_xy! ⇒ 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 XY 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.
482 483 484 485 |
# File 'lib/radmesh/stl.rb', line 482 def mirror_xy! CADMesh.stl_mirror_xy(@stl_ptr) self end |