com.actelion.research.util.datamodel.XYIndex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
package com.actelion.research.util.datamodel;
/**
* Modest v. Korff
* Idorsia Pharmaceuticals Ltd.
* 08.02.2021 Start implementation
**/
public class XYIndex extends XY {
int index;
public XYIndex(double[] x, double[] y) {
super(x, y);
}
public XYIndex(double[] x, double[] y, int index) {
super(x, y);
this.index = index;
}
}