1 /* 2 * Created on Jul 25, 2004 3 * 4 * TODO To change the template for this generated file go to 5 * Window - Preferences - Java - Code Style - Code Templates 6 */ 7 package net.sourceforge.kamiwaai.geometricalgebra; 8 9 /*** 10 * @author Administrator 11 * 12 * TODO To change the template for this generated type comment go to 13 * Window - Preferences - Java - Code Style - Code Templates 14 */ 15 public interface HomogeneousModel { 16 MultiVector getMultiVector(); 17 MultiVector meet(HomogeneousModel model); 18 }