How to draw a polygon with outline?
I have a piece of script that draws a polygon.It has semi-transparent fill, but I'd rather have just line outline. How do I do that? framebox << Add Graphics Script(
Transparency( 0.5 );
Fill Color("Green");
Polygon( {246, 37}, {246, 437}, {772, 437}, {772, 37} );
//Command for an outline?
);