Interface IViewerExaminer
-
- All Known Implementing Classes:
ViewerExaminer
,ViewerExaminer
public interface IViewerExaminer
Interface for viewers with an examiner area.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dispose()
Dispose viewer resources.java.awt.Component
getComponent()
Gets the parent component of this viewer.IRenderAreaExaminer
getRenderArea()
Gets the examiner area.void
setSceneGraph(SoNode sceneGraph)
Sets the scene graph.void
viewAll()
Set the camera to view all the scene.
-
-
-
Method Detail
-
getComponent
java.awt.Component getComponent()
Gets the parent component of this viewer.- Returns:
- the parent component
-
setSceneGraph
void setSceneGraph(SoNode sceneGraph)
Sets the scene graph. This is the Open Inventor scene which will be traversed for rendering and event processing.- Parameters:
sceneGraph
- the scene graph
-
viewAll
void viewAll()
Set the camera to view all the scene.
-
getRenderArea
IRenderAreaExaminer getRenderArea()
Gets the examiner area.- Returns:
- the examiner area
-
dispose
void dispose()
Dispose viewer resources.
-
-