Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
GD /
Graph /
Delete
Unzip
Name
Size
Permission
Date
Action
Data.pm
16.79
KB
-rw-r--r--
2013-06-22 21:40
Error.pm
8.96
KB
-rw-r--r--
2013-07-05 14:46
FAQ.pod
5.77
KB
-rw-r--r--
2013-06-22 21:40
area.pm
2.91
KB
-rw-r--r--
2013-06-22 21:40
axestype.pm
60.28
KB
-rw-r--r--
2016-11-21 11:57
bars.pm
12.3
KB
-rw-r--r--
2015-12-27 16:47
colour.pm
7.57
KB
-rw-r--r--
2013-06-22 21:40
hbars.pm
1.59
KB
-rw-r--r--
2013-06-22 21:40
lines.pm
4.34
KB
-rw-r--r--
2013-06-22 21:40
linespoints.pm
1.19
KB
-rw-r--r--
2013-06-22 21:40
mixed.pm
2.91
KB
-rw-r--r--
2013-06-22 21:40
pie.pm
12.58
KB
-rw-r--r--
2015-12-27 16:43
points.pm
4.99
KB
-rw-r--r--
2013-06-22 21:40
utils.pm
1.22
KB
-rw-r--r--
2013-06-22 21:40
Save
Rename
#========================================================================== # Copyright (c) 1995-1998 Martien Verbruggen #-------------------------------------------------------------------------- # # Name: # GD::Graph::linespoints.pm # # $Id: linespoints.pm,v 1.8 2005/12/14 04:13:08 ben Exp $ # #========================================================================== package GD::Graph::linespoints; ($GD::Graph::linespoints::VERSION) = '$Revision: 1.8 $' =~ /\s([\d.]+)/; use strict; use GD::Graph::axestype; use GD::Graph::lines; use GD::Graph::points; # Even though multiple inheritance is not really a good idea, # since lines and points have the same parent class, I will do it here, # because I need the functionality of the markers and the line types @GD::Graph::linespoints::ISA = qw(GD::Graph::lines GD::Graph::points); # PRIVATE sub draw_data_set { my $self = shift; $self->GD::Graph::points::draw_data_set(@_) or return; $self->GD::Graph::lines::draw_data_set(@_); } sub draw_legend_marker { my $self = shift; $self->GD::Graph::points::draw_legend_marker(@_); $self->GD::Graph::lines::draw_legend_marker(@_); } "Just another true value";