diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2007-08-13 18:41:27 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2007-08-13 18:41:27 +0000 |
| commit | bcbf441e09fb502cf64924ff2530fa144bdf52c5 (patch) | |
| tree | f377707a2dac078db8cd0c7d7abfe69ac1006d71 /lib/GD/Graph/cylinder3d.pm | |
| download | xxv-bcbf441e09fb502cf64924ff2530fa144bdf52c5.tar.gz xxv-bcbf441e09fb502cf64924ff2530fa144bdf52c5.tar.bz2 | |
* Move files to trunk
Diffstat (limited to 'lib/GD/Graph/cylinder3d.pm')
| -rw-r--r-- | lib/GD/Graph/cylinder3d.pm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/GD/Graph/cylinder3d.pm b/lib/GD/Graph/cylinder3d.pm new file mode 100644 index 0000000..7bc2490 --- /dev/null +++ b/lib/GD/Graph/cylinder3d.pm @@ -0,0 +1,30 @@ +############################################################
+#
+# Module: GD::Graph::cylinder3d
+#
+# Description:
+# This is merely a wrapper around GD::Graph::cylinder
+# to be used as an alias
+#
+# Created: 16 October 2002 by Jeremy Wadsack for Wadsack-Allen Digital Group
+# Copyright (C) 2002 Wadsack-Allen. All rights reserved.
+############################################################
+# Date Modification Author
+# ----------------------------------------------------------
+# #
+############################################################
+package GD::Graph::cylinder3d;
+
+use strict;
+use GD;
+use GD::Graph;
+use GD::Graph::cylinder;
+use Carp;
+
+@GD::Graph::cylinder3d::ISA = qw( GD::Graph::cylinder );
+$GD::Graph::cylinder3d::VERSION = '0.63';
+
+# Inherit everything from GD::Graph::cylinder
+
+
+1;
|
