Create Polygon : Canvas « GUI « Perl






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

1.Create Oval
2.Create Rectangle
3.Draw image on a canvas
4.Draw line
5.Set 'fill' for shape
6.Using a canvas control