134135136137138139140141142143144
newArea=new Area( generalPaths[ i ] ); //---if this is not the first area, subtract cumulative area if( i > 0 ) { areas[ i ]=(Area) newArea.clone(); areas[ i ].subtract( totalArea ); totalArea=newArea; } else