Last active
October 3, 2016 19:09
-
-
Save Revlin/1451f3cbc1561c3a5999 to your computer and use it in GitHub Desktop.
vrml.pm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
package vrml; | |
require Exporter; | |
@ISA = ('Exporter'); | |
@EXPORT = ( | |
DEF, USE, | |
Group, Transform, | |
Appearance, Material, | |
Shape, Cone, Cylinder | |
); | |
sub DEF {}; | |
sub USE {}; | |
sub Group {}; | |
sub Transform {}; | |
sub Shape {}; | |
sub Cone {}; | |
sub Cylinder {}; | |
sub Appearance {}; | |
sub Material {}; | |
} | |
1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment