/usr/share/perl5/GD/Graph/cylinder3d.pm is in libgd-graph3d-perl 0.63-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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;
|