Method: RMath3D::RMtx2#getColumn

Defined in:
lib/rmath3d/rmath3d_plain.rb

#getColumn(column) ⇒ Object

call-seq: mtx2.getColumn© -> RVec2

Returns c-th column vector.



173
174
175
# File 'lib/rmath3d/rmath3d_plain.rb', line 173

def getColumn( column )
  return RVec2.new( self[0,column], self[1,column] )
end