Package com.bc.ceres.grender
Interface InteractiveRendering
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
invalidateRegion(Rectangle region)
Invalidates the given view region so that it becomes repainted as soon as possible.void
invokeLater(Runnable task)
Runs the given task in the thread that is used by the GUI library.-
Methods inherited from interface com.bc.ceres.grender.Rendering
getGraphics, getViewport
-
-
-
-
Method Detail
-
invalidateRegion
void invalidateRegion(Rectangle region)
Invalidates the given view region so that it becomes repainted as soon as possible.- Parameters:
region
- The region to be invalidated (in view coordinates).
-
invokeLater
void invokeLater(Runnable task)
Runs the given task in the thread that is used by the GUI library. In Swing, this would be the Event Dispatcher Thread (EDT).- Parameters:
task
- The task to be invoked.
-
-