use strict;
use vars qw($VERSION);
-$VERSION = "1.009";
+$VERSION = "1.010";
# this needs to be kept in sync with the array of hatches in fills.c
my @hatch_types =
my $fill = Imager::Fill->new(fountain=>$ftype,
xa=>$xa, ya=>$ya, xb=>$xb, yb=>$yb,
- segment=>$segments, repeat=>$repeat, combine=>$combine,
+ segments=>$segments, repeat=>$repeat, combine=>$combine,
super_sample=>$super_sample, ssample_param=>$ssample_param);
This fills the given region with a fountain fill. This is exactly the
use Imager::Color::Float;
use vars qw($VERSION);
-$VERSION = "1.005";
+$VERSION = "1.006";
=head1 NAME
# assuming $f is a new Imager::Fountain in each case here
use Imager ':handy';
# simple transition from red to blue
- $f->add(c0=>NC('#FF0000), c1=>NC('#0000FF'));
+ $f->add(c0=>NC('#FF0000'), c1=>NC('#0000FF'));
# simple 2 stages from red to green to blue
$f->add(end=>0.5, c0=>NC('#FF0000'), c1=>NC('#00FF00'))
$f->add(start=>0.5, c0=>NC('#00FF00'), c1->NC('#0000FF'));