コード例 #1
0
ファイル: ColorBar.java プロジェクト: littlekai13/androidmcr
 /**
  * Configures the color bar.
  *
  * @param plot the plot.
  */
 public void configure(ContourPlot plot) {
   double minZ = plot.getDataset().getMinZValue();
   double maxZ = plot.getDataset().getMaxZValue();
   setMinimumValue(minZ);
   setMaximumValue(maxZ);
 }