File: Matrix.pm

package info (click to toggle)
libopengl-perl 0.7004%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,088 kB
  • sloc: perl: 9,701; ansic: 8,090; makefile: 110
file content (23 lines) | stat: -rw-r--r-- 347 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
package OpenGL::Matrix;

=head1 NAME

OpenGL::Matrix - module encapsulating matrix functions

=cut

use strict;
use warnings;

use Exporter 'import';
require DynaLoader;
require OpenGL::Array;

our $VERSION = '0.7003';
our @ISA = qw(DynaLoader OpenGL::Array);

__PACKAGE__->bootstrap;

sub CLONE_SKIP { 1 } # OpenGL::Matrix is not thread safe

1;