Class 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.
  • Constructor Summary

    Constructors
    Constructor
    Description
    新しいプロットオプション設定値を格納するインスタンスを生成します Creates a new instance for storing detailed parameters of plotting optioons .
  • Method Summary

    Modifier and Type
    Method
    Description
    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

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • RinearnGraph3DOptionParameter

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

    • setLineWidth

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

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

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

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