パッケージ com.rinearn.graph3d

クラス RinearnGraph3DOptionParameter

java.lang.Object
com.rinearn.graph3d.RinearnGraph3DOptionParameter

public class RinearnGraph3DOptionParameter extends Object
リニアングラフ3D(RINEARN Graph 3D)のプロットオプションの詳細設定値を格納するクラスです The class for storing detailed parameters of plotting options of RINEARN Graph 3D .
このクラスは RinearnGraph3D.setOptionParameter メソッドの引数で使用します.
This class is used as an argument of RinearnGraph3D.setOptionParameter method.
  • コンストラクタの概要

    コンストラクタ
    コンストラクタ
    説明
    新しいプロットオプション設定値を格納するインスタンスを生成します Creates a new instance for storing detailed parameters of plotting optioons .
  • メソッドの概要

    修飾子とタイプ
    メソッド
    説明
    double
    線の太さを取得します Gets the width of lines
    double
    点の半径を取得します Gets the radius of points
    void
    setLineWidth(double lineWidth)
    線の太さを指定します Sets the width of lines
    void
    setPointRadius(double pointRadius)
    点の半径を指定します Sets the radius of points

    クラスから継承されたメソッド java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • コンストラクタの詳細

    • RinearnGraph3DOptionParameter

      public RinearnGraph3DOptionParameter()
      新しいプロットオプション設定値を格納するインスタンスを生成します Creates a new instance for storing detailed parameters of plotting optioons .
  • メソッドの詳細

    • setLineWidth

      public void setLineWidth(double lineWidth)
      線の太さを指定します Sets the width of lines
      パラメータ:
      lineWidth - 線の太さ The width of lines
    • getLineWidth

      public double getLineWidth()
      線の太さを取得します Gets the width of lines
      戻り値:
      線の太さ The width of lines
    • setPointRadius

      public void setPointRadius(double pointRadius)
      点の半径を指定します Sets the radius of points
      パラメータ:
      pointRadius - 点の半径 The radius of points
    • getPointRadius

      public double getPointRadius()
      点の半径を取得します Gets the radius of points
      戻り値:
      点の半径 The radius of points