Graphics-GVG-OpenGLRenderer

 view release on metacpan or  search on metacpan

lib/Graphics/GVG/OpenGLRenderer.pm  view on Meta::CPAN

    my $code = 'package ' . $pack . ';';
    $code .= q!
        use strict;
        use warnings;
        use OpenGL qw(:all);

        sub new
        {
            my ($class) = @_;
            my $self = {};
            bless $self => $class;
            return $self;
        }

        sub draw {
    !;
    return $code;
}

sub make_closing_code
{



( run in 1.079 second using v1.01-cache-2.11-cpan-3b35f9de6a3 )