This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.26/Font/FreeType/BoundingBox.pm is in libfont-freetype-perl 0.09-1build1.

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
package Font::FreeType::BoundingBox;
use warnings;
use strict;

1;

__END__

=head1 NAME

Font::FreeType::BoundingBox - a structure used to hold an outline's bounding box

=head1 SYNOPSIS

    use Font::FreeType;

    my $freetype = Font::FreeType->new;
    my $face = $freetype->face('Vera.ttf');
    my ($x_min, $y_min, $x_max, $y_max) =
        ($face->x_min, $face->y_min, $face->x_max, $face->y_max);

=head1 DESCRIPTION

A structure used to hold an outline's bounding box, i.e., the coordinates of
its extrema in the horizontal and vertical directions.

The bounding box is specified with the coordinates of the lower left and the
upper right corner. In PostScript, those values are often called (llx,lly)
and (urx,ury), respectively.

If I<y_min> is negative, this value gives the glyph's descender. Otherwise, the
glyph doesn't descend below the baseline. Similarly, if I<y_max> is positive,
this value gives the glyph's ascender.

I<x_min> gives the horizontal distance from the glyph's origin to the left
edge of the glyph's bounding box. If I<x_min> is negative, the glyph extends
to the left of the origin.

=head1 METHODS

=over 4

=item x_min

=item y_min

=item x_max

=item y_max

=back

=cut