String twoDoubleFormat = "\"%f,%f\"";
builder.append(String.format(twoDoubleFormat, l.getX(), l.getY()));
}
else if (o instanceof Point3D)
{
Point3D p = (Point3D)o;
builder.append(String.format("\"%f,%f,%f\"", p.getX(), p.getY(), p.getZ()));
}
else if (o instanceof Range)
{
Range r = (Range)o;
startArray();