Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00021 package com.generalrobotix.ui.view.tdview;
00022
00023 import java.io.Serializable;
00024 import javax.media.j3d.*;
00025
00026 public interface ThreeDDrawable extends Serializable {
00031 public String getName();
00032 public String getFullName();
00033 public void attach(BranchGroup bg);
00034
00035 public void setViewMode(int mode);
00036
00037 public void setDirection(int dir);
00038
00039 public void setTransform(Transform3D transform);
00040
00041
00042
00043
00044
00045 public TransformGroup getTransformGroupRoot();
00046
00047 public View getView();
00048
00049 public ViewInfo getViewInfo();
00050
00051
00052
00053
00054
00055
00056
00057
00058 }