//FIXME this is a hack to draw the outline of the shape
//over the clipped children, to not process the clipmask
//in the superclass we set it to null temporary
Clip saved = this.getChildClip();
if (saved != null){
saved.disableClip(g);
//Draw shape outline over everything for an antialiased outline
if (!savedNoStrokeSetting){
boolean noFillSetting = this.isNoFill();
this.setNoFill(true);
this.setNoStroke(false);