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

Changelog

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

  [ Debian Janitor ]
  * Apply multi-arch hints. + libmath-bezier-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 13 Oct 2022 21:14:04 +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
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmath-bezier-perl_0.01-4.dsc 2.1 KiB 32b98777583469f166b5227a12398fd8a09ea250f7a0eac3aa50662550403dd2
libmath-bezier-perl_0.01.orig.tar.gz 3.0 KiB 11a815fc45fdf0efabb1822ab77faad8b9eea162572c5f0940c8ed7d56e6b8b8
libmath-bezier-perl_0.01-4.debian.tar.xz 2.2 KiB 5630153952ec6f0a60fba9faf5ba099fdab86249d2b10f60d3ec1c174b4b27e5

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.