VRML::VRML1.pm - VRML methods with the VRML 1.0 standard
use VRML::VRML1; $vrml = new VRML::VRML1; $vrml->browser('Cosmo Player 2.0','Netscape'); $vrml->at('-15 0 20'); $vrml->box('5 3 1','yellow'); $vrml->back; $vrml->print; $vrml->save; OR with the same result use VRML::VRML1; VRML::VRML1->new ->browser('Cosmo Player 2.0','Netscape') ->at('-15 0 20')->box('5 3 1','yellow')->back ->print->save;
The methods are identically implemented in VRML::VRML1 and VRML::VRML2. They described in modul VRML.
VRML
VRML::Base
VRML::Color
http://www.gfz-potsdam.de/~palm/vrmlperl/ for a description of VRML-modules and how to obtain it.
Hartmut Palm <palm@gfz-potsdam.de>
Homepage http://www.gfz-potsdam.de/~palm/
To install VRML, copy and paste the appropriate command in to your terminal.
cpanm
cpanm VRML
CPAN shell
perl -MCPAN -e shell install VRML
For more information on module installation, please visit the detailed CPAN module installation guide.