Method: RMath3D::RMtx2#transpose!
- Defined in:
- lib/rmath3d/rmath3d_plain.rb
#transpose! ⇒ Object
call-seq: transpose!
Transposeas its elements.
252 253 254 |
# File 'lib/rmath3d/rmath3d_plain.rb', line 252 def transpose! @e[1], @e[2] = @e[2], @e[1] end |