Create Polygon
use Tk;
$main = MainWindow->new;
$canvas1 = $main->Canvas('-width' => 400,
-height => 200
)->pack;
$canvas1->create ('polygon', '85', '105', '105',
'85', '125', '105', '105', '125', '85', '105',
-fill => 'black');
MainLoop;
Related examples in the same category