View Javadoc

1   /* -------------------------------------------------------------------
2    * Java source file for the class ManipulatorCallback
3    * 
4    * Copyright (c), 2003, Masahiro Takatsuka.
5    * All Rights Researved.
6    * 
7    * Original Author: Masahiro Takatsuka (masa@jbeans.net)
8    * $Author: takatsukam $
9    * 
10   * $Date: 2004/03/03 11:53:07 $
11   * 
12   * $Id: ManipulatorCallback.java,v 1.3 2004/03/03 11:53:07 takatsukam Exp $
13   * 
14   * Reference:		Document no:
15   * ___				___
16   * 
17   * To Do:
18   * ___
19   * 
20  ------------------------------------------------------------------- */
21  
22  /* --------------------------- Package ---------------------------- */
23  package net.jbeans.j3d.util.manipulator;
24  
25  /* ------------------ Import classes (packages) ------------------- *//package-summary/html">class="comment"> ------------------ Import classes (packages) ------------------- *//package-summary.html">class="comment">/* ------------------ Import classes (packages) ------------------- *//package-summary.html">class="comment"> ------------------ Import classes (packages) ------------------- */
26  import javax.media.j3d.*;
27  
28  /*====================================================================
29               Implementation of class ManipulatorCallback              
30  ====================================================================*/
31  /***
32   * generally describe ManipulatorCallback in here
33   * 
34   * @version $Revision: 1.3 $
35   * @author Masahiro Takatsuka (masa@jbeans.net)
36   */
37  
38  public interface ManipulatorCallback {
39      public static final int ROTATE = 0;
40      public static final int TRANSLATE = 1;
41      public static final int ZOOM = 2;
42      public static final int SCALE = 3;
43      public static final int ROLL = 4;	
44  	public static final int SEEK = 5;	
45  
46      void transformChanged(int i, Transform3D transform3d, Object data);
47  }