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

Changelog

libmath-bezier-perl (0.01-3) unstable; urgency=medium

  [ Florian Schlichting ]
  * Change search.cpan.org to metacpan.org URLs in debian/control, copyright
    and watch

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 9 to 12.
  * Set debhelper-compat version in Build-Depends.

 -- Jelmer Vernooij <email address hidden>  Wed, 15 Jun 2022 16:34:42 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmath-bezier-perl_0.01-3.dsc 2.1 KiB e0a59b511f35fe3d6e41973833f7e3fca5bf0da7f941d8c09e949bd27c96ef90
libmath-bezier-perl_0.01.orig.tar.gz 3.0 KiB 11a815fc45fdf0efabb1822ab77faad8b9eea162572c5f0940c8ed7d56e6b8b8
libmath-bezier-perl_0.01-3.debian.tar.xz 2.2 KiB b0504224ed08d9e5e09b9d6c127c04988fc7a15a9d2985bc817aaf84faeb7aae

Available diffs

No changes file available.

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.