001         package com.croftsoft.apps.tag3d;
002    
003         /*********************************************************************
004         *
005         * Tag3D constants.
006         *
007         * @author
008         *   <A HREF="http://www.alumni.caltech.edu/~croft/">David W. Croft</A>
009         * @version
010         *   1999-02-07
011         *********************************************************************/
012    
013         public interface  Tag3DConstants
014         //////////////////////////////////////////////////////////////////////
015         //////////////////////////////////////////////////////////////////////
016         {
017    
018         public static double  DELTA_ROTATION    = 0.01 * Math.PI;
019         public static double  DELTA_TRANSLATION = 0.1;
020    
021         public static String  DEFAULT_ID        = "Tagger0";
022    
023         //////////////////////////////////////////////////////////////////////
024         //////////////////////////////////////////////////////////////////////
025         }