}
public void convert() throws IOException {
while(wf.hasNext()) {
WigValue value = wf.next();
int x = value.getPosition();
double y = value.getValue();
double z = 0;
TubePosition position = new TubePosition(x, y, z, colorR, colorG, colorB, radius);
getTubePositions().add(position);
}