File: control

package info (click to toggle)
libmath-quaternion-perl 0.07-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 208 kB
  • ctags: 54
  • sloc: perl: 420; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,450 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Source: libmath-quaternion-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Dima Kogan <dima@secretsauce.net>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: perl
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmath-quaternion-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libmath-quaternion-perl.git
Homepage: https://metacpan.org/release/Math-Quaternion

Package: libmath-quaternion-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
Description: Perl routines to handle operations on quaternions
 Math::Quaternion lets you create and manipulate quaternions. A quaternion is a
 mathematical object developed as a kind of generalization of complex numbers,
 usually represented by an array of four real numbers, and is often used to
 represent rotations in three-dimensional space.
 .
 See, for example, http://mathworld.wolfram.com/Quaternion.html for more
 details on the mathematics of quaternions.
 .
 Quaternions can be added, subtracted, and scaled just like complex numbers or
 vectors -- they can also be multiplied, but quaternion multiplication DOES
 NOT COMMUTE. That is to say, if you have quaternions $q1 and $q2, then in
 general $q1*$q2 != $q2*$q1. This is related to their use in representing
 rotations, which also do not commute.