From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

=head1 NAME
OpenGL::Matrix - module encapsulating matrix functions
=cut
use strict;
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;