md3.util
Class MatrixMath

java.lang.Object
  |
  +--md3.util.MatrixMath

public final class MatrixMath
extends java.lang.Object

Booch utility class with matrix math operations.

Author:
Erwin Vervaet (erwin@cs.kuleuven.ac.be)

Method Summary
static float[][] mult(float[][] a, float[][] b)
          Float matrix multiplication.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

mult

public static final float[][] mult(float[][] a,
                                   float[][] b)

Float matrix multiplication.

Returns:
a*b or null if a and b have incompatible dimensions.