クラス RinearnGraph3DPlottingEvent
java.lang.Object
java.util.EventObject
com.rinearn.graph3d.event.RinearnGraph3DPlottingEvent
- すべての実装されたインタフェース:
Serializable
リニアングラフ3D(RINEARN Graph3D)において、プロット/再プロットが必要になった際に発生するイベントです
The event which occurs when plotting/replotting is required on RINEARN Graph 3D
.
このイベントは
再プロットとは、グラフの3D形状の再構築処理の事で、グラフのプロット範囲の変更や、プロットオプションの選択状況の切り替えなどの際に必要となります。
再プロットが行われると、
なお、このイベントは、source としてイベント発生元の
RinearnGraph3DPlottingListener
インタフェースを実装する事で受け取る事ができます。
再プロットとは、グラフの3D形状の再構築処理の事で、グラフのプロット範囲の変更や、プロットオプションの選択状況の切り替えなどの際に必要となります。
再プロットが行われると、
RinearnGraph3DRenderer
クラス等によって3D描画エンジンを直接制御して描かれた3D形状は、一旦全て消去されます。
そのため、このイベントを受け取り、必要に応じて再描画を行ってください。
なお、このイベントは、source としてイベント発生元の
RinearnGraph3D
クラスのインスタンスを保持しています。
You can receive this event by implementing
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
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'.
- 関連項目:
-
フィールドの概要
クラスから継承されたフィールド java.util.EventObject
source
-
コンストラクタの概要
コンストラクタコンストラクタ説明新しいプロットイベントを生成します Creates a new plotting event . -
メソッドの概要
クラスから継承されたメソッド java.util.EventObject
getSource, toString
-
コンストラクタの詳細
-
RinearnGraph3DPlottingEvent
新しいプロットイベントを生成します Creates a new plotting event .- パラメータ:
source
- イベント発生元の RinearnGraph3D インスタンス The RinearnGraph3D instance as the source of this event
-