323324325326327328329330331332333
true ); while ( dobjs.hasNext() ) { dobj = (Drawable) dobjs.next(); if ( dobj.getCategory().isVisible() ) { N_nestable_drawn += dobj.drawOnCanvas( offGraphics, coord_xform, map_line2row, drawn_boxes ); N_nestable += dobj.getNumOfPrimitives(); } }
372373374375376377378379380381382
false ); while ( dobjs.hasNext() ) { dobj = (Drawable) dobjs.next(); if ( dobj.getCategory().isVisible() ) { N_nestless_drawn += dobj.drawOnCanvas( offGraphics, coord_xform, map_line2row, drawn_boxes ); N_nestless += dobj.getNumOfPrimitives(); } }
337338339340341342343344345346347
true ); while ( sobjs.hasNext() ) { sobj = (Shadow) sobjs.next(); if ( sobj.getCategory().isVisible() ) { N_nestable_drawn += sobj.drawOnCanvas( offGraphics, coord_xform, map_line2row, drawn_boxes ); N_nestable += sobj.getNumOfPrimitives(); } }