パッケージ com.rinearn.graph3d.event

インタフェース RinearnGraph3DPlottingListener

すべてのスーパーインタフェース:
EventListener

public interface RinearnGraph3DPlottingListener extends 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.
  • メソッドの概要

    修飾子とタイプ
    メソッド
    説明
    void
    要求された再プロットが, キャンセルされたタイミングでコールされます Called when the requested replotting has been canceled .
    void
    要求された再プロットが, 完了したタイミングでコールされます Called when the requested replotting has completed .
    void
    再プロットが要求されたタイミングでコールされます Called when replotting is requested .
  • メソッドの詳細

    • plottingRequested

      void plottingRequested(RinearnGraph3DPlottingEvent event)
      再プロットが要求されたタイミングでコールされます Called when replotting is requested .
      パラメータ:
      event - プロットイベント The plotting event
    • plottingCanceled

      void plottingCanceled(RinearnGraph3DPlottingEvent event)
      要求された再プロットが, キャンセルされたタイミングでコールされます Called when the requested replotting has been canceled .
      パラメータ:
      event - プロットイベント The plotting event
    • plottingFinished

      void plottingFinished(RinearnGraph3DPlottingEvent event)
      要求された再プロットが, 完了したタイミングでコールされます Called when the requested replotting has completed .
      パラメータ:
      event - プロットイベント The plotting event