The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
use strict;
use Chart::Gnuplot;

# Input data source
my @points = ();
for (my $x = -5; $x < 5; $x += 0.02)
{
	my $y = sin($x*3);
	my $z = cos($x*3);

	push(@points, [$x, $y, $z]);
}

my $chart = Chart::Gnuplot->new(
    output => "gallery/plot3d_2.png",
    title  => "3D plot from Perl array of points",
);


my $dataSet = Chart::Gnuplot::DataSet->new(
    points => \@points,
);

$chart->plot3d($dataSet);