line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
############################################################
|
2
|
|
|
|
|
|
|
#
|
3
|
|
|
|
|
|
|
# Module: GD::Graph::cylinder3d
|
4
|
|
|
|
|
|
|
#
|
5
|
|
|
|
|
|
|
# Description:
|
6
|
|
|
|
|
|
|
# This is merely a wrapper around GD::Graph::cylinder
|
7
|
|
|
|
|
|
|
# to be used as an alias
|
8
|
|
|
|
|
|
|
#
|
9
|
|
|
|
|
|
|
# Created: 16 October 2002 by Jeremy Wadsack for Wadsack-Allen Digital Group
|
10
|
|
|
|
|
|
|
# Copyright (C) 2002 Wadsack-Allen. All rights reserved.
|
11
|
|
|
|
|
|
|
############################################################
|
12
|
|
|
|
|
|
|
# Date Modification Author
|
13
|
|
|
|
|
|
|
# ----------------------------------------------------------
|
14
|
|
|
|
|
|
|
# #
|
15
|
|
|
|
|
|
|
############################################################
|
16
|
|
|
|
|
|
|
package GD::Graph::cylinder3d;
|
17
|
|
|
|
|
|
|
|
18
|
1
|
|
|
1
|
|
1147
|
use strict;
|
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
39
|
|
19
|
1
|
|
|
1
|
|
782
|
use GD;
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
use GD::Graph;
|
21
|
|
|
|
|
|
|
use GD::Graph::cylinder;
|
22
|
|
|
|
|
|
|
use Carp;
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
@GD::Graph::cylinder3d::ISA = qw( GD::Graph::cylinder );
|
25
|
|
|
|
|
|
|
$GD::Graph::cylinder3d::VERSION = '0.63';
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
# Inherit everything from GD::Graph::cylinder
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
1;
|