001 package com.croftsoft.core.math.matrix;
002
003 /***********************************************************************
004 * A mutable 3x3 matrix of doubles.
005 *
006 * @version
007 * $Id: Matrix3x3Mut.java,v 1.1 2008/04/26 02:40:41 croft Exp $
008 * @since
009 * 2008-04-25
010 * @author
011 * <a href="http://www.CroftSoft.com/">David Wallace Croft</a>
012 ***********************************************************************/
013
014 public interface Matrix3x3Mut
015 extends MatrixMut, Matrix3x3
016 ////////////////////////////////////////////////////////////////////////
017 ////////////////////////////////////////////////////////////////////////
018 {
019
020 ////////////////////////////////////////////////////////////////////////
021 ////////////////////////////////////////////////////////////////////////
022 }