Method: RMath3D::RMtx2#getDeterminant

Defined in:
lib/rmath3d/rmath3d_plain.rb

#getDeterminantObject

call-seq: getDeterminant -> determinant

Calculates determinant.



233
234
235
# File 'lib/rmath3d/rmath3d_plain.rb', line 233

def getDeterminant
  e00 * e11 - e01 * e10
end