public class Renderer3DChangeEvent extends java.util.EventObject
Renderer3D.
Any object that implements the Renderer3DChangeListener interface
can register with a renderer to receive change event notifications. By
default, the plot classes register with the renderer they manage in order
to monitor changes to the renderer.
| Constructor and Description |
|---|
Renderer3DChangeEvent(java.lang.Object source,
Renderer3D renderer,
boolean requiresWorldUpdate)
Creates a new change event.
|
Renderer3DChangeEvent(Renderer3D renderer,
boolean requiresWorldUpdate)
Creates a new change event.
|
| Modifier and Type | Method and Description |
|---|---|
Renderer3D |
getRenderer()
Returns the renderer that the event relates to.
|
boolean |
requiresWorldUpdate()
Returns the flag that indicates whether or not this change will require
the 3D world to be updated.
|
public Renderer3DChangeEvent(Renderer3D renderer, boolean requiresWorldUpdate)
renderer - the renderer that changed (null not permitted).requiresWorldUpdate - a flag indicating whether or not the change
requires the 3D world to be updated.public Renderer3DChangeEvent(java.lang.Object source, Renderer3D renderer, boolean requiresWorldUpdate)
source - the source.renderer - the renderer.requiresWorldUpdate - a flag indicating whether or not the change
requires the 3D world to be updated.public Renderer3D getRenderer()
public boolean requiresWorldUpdate()