Home
last modified time | relevance | path

Searched refs:newXYCoords (Results 1 – 5 of 5) sorted by relevance

/dports/science/jmol/jmol-14.32.7/src/jspecview/export/
H A DJDXExporter.java96 Coordinate[] newXYCoords = spectrum.getXYCoords(); in toStringAux() local
101 Coordinate[] xyCoords = newXYCoords; in toStringAux()
102 newXYCoords = new Coordinate[xyCoords.length]; in toStringAux()
104 newXYCoords[i] = xyCoords[i].copy(); in toStringAux()
105 Coordinate.applyScale(newXYCoords, spectrum.getObservedFreq(), 1); in toStringAux()
109 boolean isIntegerX = areIntegers(newXYCoords, startIndex, endIndex, 1.0, true); in toStringAux()
113 double minY = Coordinate.getMinY(newXYCoords, startIndex, endIndex); in toStringAux()
114 double maxY = Coordinate.getMaxY(newXYCoords, startIndex, endIndex); in toStringAux()
126 boolean isIntegerY = areIntegers(newXYCoords, startIndex, endIndex, 1.0, false); in toStringAux()
142 tabDataSet = JDXCompressor.compressDIF(newXYCoords, startIndex, endIndex, step, in toStringAux()
[all …]
H A DXMLExporter.java84 protected Lst<Coordinate> newXYCoords = new Lst<Coordinate>(); field in XMLExporter
105 newXYCoords.addLast(xyCoords[i]); in setParameters()
260 context.put("xyCoords", newXYCoords); in setContext()
H A DSVGExporter.java265 Lst<Coordinate> newXYCoords = new Lst<Coordinate>(); in exportTheSpectrum() local
267 newXYCoords.addLast(xyCoords[i]); in exportTheSpectrum()
274 … " " + firstX + " "+ lastX + " " + startIndex + " " + endIndex + " " + newXYCoords.get(0).toString… in exportTheSpectrum()
276 context.put("xyCoords", newXYCoords); in exportTheSpectrum()
/dports/science/jmol/jmol-14.32.7/src/jspecview/common/
H A DSpectrum.java373 Coordinate[] newXYCoords = new Coordinate[xyCoords.length]; in toT() local
377 newXYCoords[i] = new Coordinate().set(xyCoords[i].getXVal(), in toT()
379 return newSpectrum(spectrum, newXYCoords, "TRANSMITTANCE"); in toT()
393 Coordinate[] newXYCoords = new Coordinate[xyCoords.length]; in toA() local
396 newXYCoords[i] = new Coordinate().set(xyCoords[i].getXVal(), in toA()
398 return newSpectrum(spectrum, newXYCoords, "ABSORBANCE"); in toA()
410 Coordinate[] newXYCoords, in newSpectrum() argument
415 specNew.setXYCoords(newXYCoords); in newSpectrum()
H A DCoordinate.java161 Coordinate[] newXYCoords = new Coordinate[xyCoords.length]; in normalise() local
166 newXYCoords[i] = new Coordinate().set(xyCoords[i].getXVal(), in normalise()
168 return newXYCoords; in normalise()