Ears of wheat

 From:  ed (EDDYF)
10315.4 In reply to 10315.3 
Very nice Zooen. Your model has an illustration quality, and I like the vase design.

You can save a clean MoI screen shot on a white background with no browser UI markings via this key shortcut script by Michael: I assigned to Alt-T

script: var prev_background = moi.view.viewportBackgroundColor; moi.view.viewportBackgroundColor = 0xFFFFFF; moi.view.lineWidth = 4; moi.grid.display = false; moi.grid.showXYAxes = false; moi.view.showAxisIcon = false; moi.view.showViewTitles = false; var img = null; try { img = moi.ui.getActiveViewport().render( 4000, 2500 ); } catch(e){} moi.view.lineWidth = 1; moi.grid.display = true; moi.grid.showXYAxes = true; moi.view.showAxisIcon = true; moi.view.showViewTitles = true; moi.view.viewportBackgroundColor = prev_background; var name = img.getSaveFileName(); if ( name != '' ) img.save( name );

Ed Ferguson