Class RinearnGraph3DOptionParameter
java.lang.Object
com.rinearn.graph3d.RinearnGraph3DOptionParameter
リニアングラフ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
ConstructorsConstructorDescription新しいプロットオプション設定値を格納するインスタンスを生成します Creates a new instance for storing detailed parameters of plotting optioons . -
Method Summary
Modifier and TypeMethodDescriptiondouble
線の太さを取得します Gets the width of linesdouble
点の半径を取得します Gets the radius of pointsvoid
setLineWidth
(double lineWidth) 線の太さを指定します Sets the width of linesvoid
setPointRadius
(double pointRadius) 点の半径を指定します Sets the radius of points
-
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
-