Class RinearnGraph3DPlottingEvent

java.lang.Object
java.util.EventObject
com.rinearn.graph3d.event.RinearnGraph3DPlottingEvent
All Implemented Interfaces:
Serializable

public class RinearnGraph3DPlottingEvent extends EventObject
リニアングラフ3D(RINEARN Graph3D)において、プロット/再プロットが必要になった際に発生するイベントです The event which occurs when plotting/replotting is required on RINEARN Graph 3D .
このイベントは RinearnGraph3DPlottingListener インタフェースを実装する事で受け取る事ができます。
再プロットとは、グラフの3D形状の再構築処理の事で、グラフのプロット範囲の変更や、プロットオプションの選択状況の切り替えなどの際に必要となります。
再プロットが行われると、RinearnGraph3DRenderer クラス等によって3D描画エンジンを直接制御して描かれた3D形状は、一旦全て消去されます。 そのため、このイベントを受け取り、必要に応じて再描画を行ってください。
なお、このイベントは、source としてイベント発生元の RinearnGraph3D クラスのインスタンスを保持しています。
You can receive this event by implementing RinearnGraph3DPlottingListener interface.
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 receiving this event if necessary.
Also, this event has the instance of the RinearnGraph3D class as the 'source'.
See Also:
  • Constructor Details

    • RinearnGraph3DPlottingEvent

      public RinearnGraph3DPlottingEvent(RinearnGraph3D source)
      新しいプロットイベントを生成します Creates a new plotting event .
      Parameters:
      source - イベント発生元の RinearnGraph3D インスタンス The RinearnGraph3D instance as the source of this event