Skip to content

Instantly share code, notes, and snippets.

@Revlin
Last active October 3, 2016 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Revlin/1451f3cbc1561c3a5999 to your computer and use it in GitHub Desktop.
Save Revlin/1451f3cbc1561c3a5999 to your computer and use it in GitHub Desktop.
vrml.pm
{
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