1 /***
2 * Virtual Mockup for Machine Vision Copyright (C) 2001-2003 Fabio R. de
3 * Miranda, João E. Kogler Jr., Carlos S. Santos. Virtual Mockup for Machine
4 * Vision Project funded by SENAC-SP Permission is granted to redistribute
5 * and/or modify this software under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either version 2.1 of
7 * the License, or (at your option) any later version. This software is
8 * distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
9 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
10 * PARTICULAR PURPOSE. See the GNU Lesser General Public License
11 * (http://www.gnu.org/copyleft/lesser.html) for more details.
12 */
13
14 package camera3d.applets;
15 import camera3d.manipulation.RotAdapterTester;
16
17 import java.applet.Applet;
18 import java.awt.BorderLayout;
19 import java.awt.Label;
20 import javax.media.j3d.Canvas3D;
21
22 /***
23 * Simple Applet to demonstrate dragging objects in a 3D world.
24 *
25 *@author Fábio Roberto de Miranda, Carlos da Silva dos Santos
26 *@created November 13, 2003
27 *@version 1.0
28 */
29 public class SimpleRotApplet extends Applet {
30
31 private RotAdapterTester teste;
32
33
34 /***
35 * Description of the Method
36 */
37 public void init() {
38 setLayout(new BorderLayout());
39 teste = new RotAdapterTester(false);
40 Canvas3D c = teste.getCanvas3D();
41 add("Center", c);
42 }
43
44
45 /***
46 * Description of the Method
47 */
48 public void start() {
49
50 }
51
52
53 /***
54 * Description of the Method
55 */
56 public void stop() {
57 }
58
59
60 /***
61 * Description of the Method
62 */
63 public void destroy() {
64
65 }
66
67 }
This page was automatically generated by Maven