Interface SiRenderAreaInteractive
-
- All Known Implementing Classes:
SoRenderAreaCore
public interface SiRenderAreaInteractive
RenderArea interactive interface. This interface provides the list of methods that renderAreas must define to use interactive feature.SoRenderAreaCore
, RenderAreaInteractive
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description SoInteractiveComplexity.InteractiveModes
getInteractiveMode()
Deprecated.As of Open Inventor 101000.boolean
processEvent(SoEvent event)
Processes the passed event to the scene graph managed here.boolean
processEvents(java.util.Collection<SoEvent> eventList)
Processes the passed event to the scene graph managed here.void
setInteractiveMode(SoInteractiveComplexity.InteractiveModes mode)
Deprecated.As of Open Inventor 101000.
-
-
-
Method Detail
-
setInteractiveMode
@Deprecated void setInteractiveMode(SoInteractiveComplexity.InteractiveModes mode)
Deprecated.As of Open Inventor 101000. Use SoInteractiveComplexity node instead.Set the current interactive mode.Warning Deprecated since Open Inventor 101000. Use
SoInteractiveComplexity
node instead.
-
processEvents
boolean processEvents(java.util.Collection<SoEvent> eventList)
Processes the passed event to the scene graph managed here. Returns true if at least one event was handled by a node.
-
getInteractiveMode
@Deprecated SoInteractiveComplexity.InteractiveModes getInteractiveMode()
Deprecated.As of Open Inventor 101000. Use SoInteractiveComplexity node instead.
-
processEvent
boolean processEvent(SoEvent event)
Processes the passed event to the scene graph managed here. Returns true if the event was handled by a node.
-
-