libmath-bezier-perl 0.01-1 source package in Ubuntu

Changelog

libmath-bezier-perl (0.01-1) unstable; urgency=low

  * Initial Release. (Closes: #592516)
 -- Ubuntu Archive Auto-Sync <email address hidden>   Mon,  01 Nov 2010 23:39:34 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Natty
Original maintainer:
Richard Holland
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe perl
Precise release universe perl

Builds

Natty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libmath-bezier-perl_0.01.orig.tar.gz 3.0 KiB 11a815fc45fdf0efabb1822ab77faad8b9eea162572c5f0940c8ed7d56e6b8b8
libmath-bezier-perl_0.01-1.diff.gz 1.4 KiB e569e4e56cfb128d68c38a93ac1045a8a8bd719fd9451ae48619758f5df608e7
libmath-bezier-perl_0.01-1.dsc 1.1 KiB e3e0c38cbdc04cb011d7ab2ae58d87915b3a15a2b2aca396035970ce47634a3d

View changes file

Binary packages built by this source

libmath-bezier-perl: Perl module for the solution of Bezier Curves

 Math::Bezier implements the algorithm for the solution of Bezier curves as
 presented by Robert D. Miller in Graphics Gems V, "Quick and Simple Bezier
 Curve Drawing".
 .
 A new Bezier curve is created using the new() constructor, passing a list of
 (x, y) control points.
 .
  use Math::Bezier;
  my @control = ( 0, 0, 10, 20, 30, -20, 40, 0 );
  my $bezier = Math::Bezier->new(@control);
 .
 Alternately, a reference to a list of control points may be passed.