File: cylinder3d.pm

package info (click to toggle)
libgd-graph3d-perl 0.63-8
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 280 kB
  • sloc: perl: 1,587; makefile: 10
file content (30 lines) | stat: -rw-r--r-- 919 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;