if( geom.getShell().getNumPoints()==0 ){
continue;
}
if( geom.getShell().getNumPoints()>0){
CurrentEditGeomPathIterator pathIterator = CurrentEditGeomPathIterator.getPathIterator(geom);
if( currentShape!=null && currentShape.getEditGeom()==geom )
pathIterator.setLocation(location, currentShape);
else{
pathIterator.setLocation(null, null);
}
fillPath(geom,pathIterator);
}
}