for(DBID clpnum : ids) {
double[] projP = proj.fastProjectDataToRenderSpace(rel.get(clpnum));
hull.add(new Vector(projP));
}
Polygon chres = hull.getHull();
// Plot the convex hull:
if(chres != null && chres.size() > 1) {
SVGPath path = new SVGPath(chres);
// Approximate area (using bounding box)
double hullarea = SpatialUtil.volume(chres);
final double relativeArea = (projarea - hullarea) / projarea;
final double relativeSize = (double) ids.size() / rel.size();