/usr/share/perl5/Chart/BrushStyles.pm is in libchart-perl 2.4.10ds1-2.
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | ## @file
# Chart::BrushStyles
#
# written and maintained by the
# @author Chart Group at Geodetic Fundamental Station Wettzell (Chart@fs.wettzell.de)
# @date 2015-03-01
# @version 2.4.10
#
## @class Chart::BrushStyles
# Define styles for Points and LinesPoints classes
#
# This class provides functions which define different
# brush styles to extend the previous point as the only design
# for Points.pm or LinesPoints.pm\n\n
# The different brush styles are:\n
# \see OpenCircle\n
# \see FilledCircle\n
# \see Star\n
# \see OpenDiamond\n
# \see FilledDiamond\n
# \see OpenRectangle\n
# \see FilledRectangle\n
package Chart::BrushStyles;
use Chart::Base '2.4.10';
use GD;
use Carp;
use strict;
use Chart::Constants;
@Chart::BrushStyles::ISA = qw(Chart::Base);
$Chart::BrushStyles::VERSION = '2.4.10';
## @fn OpenCircle
# @param[in] *GD::Image $rbrush Reference to GD::Image
# @param[in] int $radius Radius of the point in pixels
# @param[in] int $color Color of the not filled point
#
# @brief Set the gdBrush object to have nice brushed object
# representing a circle of the size \$radius.
#
# @details
# Called by\n
# use Chart::BrushStyles;\n
# \@Chart::Points::ISA = qw(Chart::BrushStyles);\n
# \$self->OpenCircle(\\\$rbrush,\$radius, \$newcolor);\n
# to plot the GD::Image representing an open circle as the point
#
sub OpenCircle
{
my $self = shift;
my $rbrush = shift; # reference to GD::Image
my $radius = shift;
my $color = shift;
# draw a filled circle
if ( $radius < 2 ) { $radius = 2; }
$$rbrush->arc( $radius, $radius, $radius, $radius, 0, 360, $color );
}
## @fn FilledCircle
# @param[in] *GD::Image $rbrush Reference to GD::Image
# @param[in] int $radius Radius of the point in pixels
# @param[in] int $color Color of the filled point
# @return nothing
#
# @brief Set the gdBrush object to have nice brushed object
# representing a point of the size \$radius.
#
# @details
# Called by\n
# use Chart::BrushStyles;\n
# \@Chart::Points::ISA = qw(Chart::BrushStyles);\n
# \$self->FilledCircle(\\\$rbrush,\$radius, \$color);\n
# to plot the GD::Image representing a filled circle as the point
#
sub FilledCircle
{
my $self = shift;
my $rbrush = shift; # reference to GD::Image
my $radius = shift;
my $color = shift;
# draw a filled circle
if ( $radius < 2 ) { $radius = 2; }
$$rbrush->arc( $radius, $radius, $radius, $radius, 0, 360, $color );
# and fill it
$$rbrush->fill( $radius, $radius, $color );
}
## @fn Star
# @param[in] *GD::Image $rbrush Reference to GD::Image
# @param[in] int $radius Radius of the star in pixels
# @param[in] int $color Color of the star
# @return nothing
#
# @brief Set the gdBrush object to have nice brushed object
# representing a star of the size \$radius.
#
# @details
# Called by\n
# use Chart::BrushStyles;\n
# \@Chart::Points::ISA = qw(Chart::BrushStyles);\n
# \$self->Star(\\\$rbrush,\$radius, \$color);\n
# to get back an GD::Image representing a star as the point
#
sub Star
{
my $self = shift;
my $rbrush = shift; # reference to GD::Image
my $radius = shift;
my $color = shift;
my $R = $self->maximum( 2, int( $radius + 0.5 ) );
my $r = $self->maximum( 1, int( $R / 3 + 0.5 ) );
my $lRadius = $R;
my $x1 = $lRadius + $R; # =$R*cos(0) + $R;
my $y1 = $R; # =$R*sin(0) + $R
my ( $x2, $y2 );
for ( my $iAngleCounter = 1 ; $iAngleCounter < 16 ; $iAngleCounter++ )
{
my $phi = $iAngleCounter * Chart::Constants::PI / 8;
$lRadius = ( ( $iAngleCounter & 1 ) == 0 ) ? $R : $r;
$x2 = $lRadius * cos($phi);
$y2 = $lRadius * sin($phi);
$x2 += $R;
$y2 += $R;
#printf("$iAngleCounter: %4f, %4f %4f,%4f\n", $x1,$y1,$x2,$y2);
$$rbrush->line( $x1, $y1, $x2, $y2, $color );
$x1 = $x2;
$y1 = $y2;
}
# draw to the first point
$x2 = $R + $R;
$y2 = $R;
$$rbrush->line( $x1, $y1, $x2, $y2, $color );
}
## @fn FilledDiamond
# @param[in] *GD::Image $rbrush Reference to GD::Image
# @param[in] int $radius Radius of the diamond in pixels
# @param[in] int $color Color of the filled diamond
# @return nothing
#
# @brief Set the gdBrush object to have nice brushed object
# representing a filled diamond of the size \$radius.
#
# @details
# Called by\n
# use Chart::BrushStyles;\n
# \@Chart::Points::ISA = qw(Chart::BrushStyles);\n
# \$self->FilledDiamond(\\\$rbrush,\$radius, \$color);\n
# to get back an GD::Image representing a filled diamond as the point
#
sub FilledDiamond
{
my $self = shift;
my $rbrush = shift; # reference to GD::Image
my $radius = shift;
my $color = shift;
my $R = $self->maximum( 2, int( $radius + 0.5 ) );
my $R2 = $R * 2;
$$rbrush->line( $R, 1, $R2 - 1, $R, $color );
$$rbrush->line( $R2, $R, $R, $R2 - 1, $color );
$$rbrush->line( $R, $R2 - 1, 1, $R, $color );
$$rbrush->line( 1, $R, $R, 1, $color );
# and fill it
$$rbrush->fill( $radius - 1, $radius - 1, $color );
}
## @fn OpenDiamond
# @param[in] *GD::Image $rbrush Reference to GD::Image
# @param[in] int $radius Radius of the diamond in pixels
# @param[in] int $color Color of the diamond
# @return nothing
#
# @brief Set the gdBrush object to have nice brushed object
# representing a diamond of the size \$radius-1.
#
# @details
# Called by\n
# use Chart::BrushStyles;\n
# \@Chart::Points::ISA = qw(Chart::BrushStyles);\n
# \$self->OpenDiamond(\\\$rbrush,\$radius, \$color);\n
# to get back an GD::Image representing a diamond as the point
#
sub OpenDiamond
{
my $self = shift;
my $rbrush = shift; # reference to GD::Image
my $radius = shift;
my $color = shift;
my $R = $self->maximum( 2, int( $radius + 0.5 ) );
my $R2 = $R * 2;
$$rbrush->line( $R, 1, $R2 - 1, $R, $color );
$$rbrush->line( $R2, $R, $R, $R2 - 1, $color );
$$rbrush->line( $R, $R2 - 1, 1, $R, $color );
$$rbrush->line( 1, $R, $R, 1, $color );
}
## @fn OpenRectangle
# @param[in] *GD::Image $rbrush Reference to GD::Image
# @param[in] int $radius Radius of the rectangle in pixels
# @param[in] int $color Color of the rectangle
# @return nothing
#
# @brief Set the gdBrush object to have nice brushed object
# representing a rectangle of the height \$radius-1 and width of $radius/2.
#
# @details
# Called by\n
# use Chart::BrushStyles;\n
# \@Chart::Points::ISA = qw(Chart::BrushStyles);\n
# \$self->OpenDiamond(\\\$rbrush,\$radius, \$color);\n
# to get back an GD::Image representing a rectangle as the point
#
sub OpenRectangle
{
my $self = shift;
my $rbrush = shift; # reference to GD::Image
my $radius = shift;
my $color = shift;
# draw a filled circle
if ( $radius < 2 ) { $radius = 2; }
my $height = $radius;
my $width = $radius / 2;
if ( $width < 1 ) { $width = 1; }
$$rbrush->line( -$width, -$height, $width, -$height, $color );
#$$rbrush->line( $width, -$height, $width, $height, $color );
#$$rbrush->line( $width, $height, -$width, $height, $color );
#$$rbrush->line( -$width, $height, -$width ,-$height,$color );
}
#################################################################
1;
|