Main
License intent
Screenshots
News
Download
Links

* FreeWRL manpages
    * freewrl
    * VRML::Browser
    * VRML::Viewer

* FreeWRL docs
    * README
    * CONFORMANCE
    * INSTALL
    * ARCHITECTURE
    * GOALS
    * CREDITS
    * TODO
     

VRML::Browser Manual Page

VRML::Browser -- perl module to implement a VRML97 browser


NAME

VRML::Browser -- perl module to implement a VRML97 browser


SYNOPSIS

Use the command-line interface (the freewrl manpage), or inside Perl:

        use VRML::Browser;

        $b = VRML::Browser->new();

        $b->load_file($url);
        $b->load_file($url,$base_url);
        $b->load_string("Shape { geometry ....", $base_url);

        $b->eventloop();

        # VRML Browser API
        $name =         $b->getName();
        $version =      $b->getVersion();
        $speed =        $b->getCurrentSpeed();
        ...

        # The rest of the API may still change and is not documented
        # here. If you need to know, check the file Browser.pm


DESCRIPTION

This module implements a VRML browser. The actual module is of interest only if you are planning to use the code from Perl.

For information on the user interface, see the VRML::Viewer manpage.


AUTHOR

See the freewrl manpage.