Interface RinearnGraph3DPlottingListener
- All Superinterfaces:
EventListener
リニアングラフ3D(RINEARN Graph3D)において, プロット/再プロットが必要になった際に発生する,
RinearnGraph3DPlottingEvent
のリスナーです
The listener of RinearnGraph3DPlottingEvent
which occurs when plotting/replotting is required on RINEARN Graph 3D
.
再プロットとは, グラフの3D形状の再構築処理の事で, グラフのプロット範囲の変更や, プロットオプションの選択状況の切り替えなどの際に必要となります.
再プロットが行われると,
再プロットが行われると,
RinearnGraph3DRenderer
クラス等によって3D描画エンジンを直接制御して描かれた3D形状は, 一旦全て消去されます.
そのため, このリスナーを実装して再プロットイベントを受け取り, 必要に応じて再描画を行ってください.
Replotting means the process rebuilding the 3D shape of the graph.
RINEARN Graph 3D performs the replotting when ranges of the axes have been modified, plotting options have been changed, and so on.
When the replotting is performed, all contents drawn by the drawing methods of RinearnGraph3DRenderer are cleared. Hence, redraw them by implementing the replotting event listener, if necessary.
When the replotting is performed, all contents drawn by the drawing methods of RinearnGraph3DRenderer are cleared. Hence, redraw them by implementing the replotting event listener, if necessary.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
要求された再プロットが, キャンセルされたタイミングでコールされます Called when the requested replotting has been canceled .void
要求された再プロットが, 完了したタイミングでコールされます Called when the requested replotting has completed .void
再プロットが要求されたタイミングでコールされます Called when replotting is requested .
-
Method Details
-
plottingRequested
再プロットが要求されたタイミングでコールされます Called when replotting is requested .- Parameters:
event
- プロットイベント The plotting event
-
plottingCanceled
要求された再プロットが, キャンセルされたタイミングでコールされます Called when the requested replotting has been canceled .- Parameters:
event
- プロットイベント The plotting event
-
plottingFinished
要求された再プロットが, 完了したタイミングでコールされます Called when the requested replotting has completed .- Parameters:
event
- プロットイベント The plotting event
-