}
sashes = new Sash [sashXAxisValues.length];
for (int i = 0; i < sashes.length; i++) {
// Create the matching sash, converting cm to percentage of width or depth, and degrees to radians
sashes [i] = new Sash(Float.parseFloat(sashXAxisValues [i]) / doorOrWindowWidth,
Float.parseFloat(sashYAxisValues [i]) / doorOrWindowDepth,
Float.parseFloat(sashWidths [i]) / doorOrWindowWidth,
(float)Math.toRadians(Float.parseFloat(sashStartAngles [i])),
(float)Math.toRadians(Float.parseFloat(sashEndAngles [i])));
}