Method: RMath3D::RMtx2#getRow

Defined in:
lib/rmath3d/rmath3d_plain.rb

#getRow(row) ⇒ Object

call-seq: mtx2.getRow® -> RVec2

Returns r-th row vector.



164
165
166
# File 'lib/rmath3d/rmath3d_plain.rb', line 164

def getRow( row )
  return RVec2.new( self[row,0], self[row,1] )
end