001    /*
002     * Dummy.java 
003     * Part of the Spirograph problem set
004     *
005     * Developed for "Rethinking CS101", a project of Lynn Andrea Stein's AP Group.
006     * For more information, see <a href="http://www.ai.mit.edu/projects/cs101/">the
007     * CS101 homepage</a> or email <las@ai.mit.edu>.
008     *
009     * Copyright (C) 1996 Massachusetts Institute of Technology.
010     * Please do not redistribute without obtaining permission.
011     */
012    
013    package spirograph;
014    
015    /** The default accelerator. <p>
016     *
017     *  <p>Copyright © 1998 Massachusetts Institute of Technology.</p>
018     *
019     *
020     * @author Luis Sarmenta, lfgs@cag.lcs.mit.edu
021     * @author Henry Wong, henryw@mit.edu
022     * @version $Id: Dummy.java,v 1.5 2004/02/09 20:55:03 gus Exp $
023     */
024    
025    public class Dummy implements Accelerator {
026    
027       public double act(double pos, double vel, double otherPos,
028                        double otherVel, double maxPos) {
029        return 0;
030      }
031    }
032    
033    /*
034     * $Log: Dummy.java,v $
035     * Revision 1.5  2004/02/09 20:55:03  gus
036     * javadoc fixes
037     *
038     * Revision 1.4  2003/01/15 17:36:10  gus
039     * adding log keywords to files that don't have them
040     *
041     */