This file is indexed.

/usr/include/wx-3.0/wx/affinematrix2d.h is in wx3.0-headers 3.0.4+dfsg-3.

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
/////////////////////////////////////////////////////////////////////////////
// Name:         wx/affinematrix2d.h
// Purpose:      wxAffineMatrix2D class.
// Author:       Based on wxTransformMatrix by Chris Breeze, Julian Smart
// Created:      2011-04-05
// Copyright:    (c) wxWidgets team
// Licence:      wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef _WX_AFFINEMATRIX2D_H_
#define _WX_AFFINEMATRIX2D_H_

#include "wx/defs.h"

#if wxUSE_GEOMETRY

#include "wx/affinematrix2dbase.h"

// A simple implementation of wxAffineMatrix2DBase interface done entirely in
// wxWidgets.
class WXDLLIMPEXP_CORE wxAffineMatrix2D : public wxAffineMatrix2DBase
{
public:
    wxAffineMatrix2D() : m_11(1), m_12(0),
                         m_21(0), m_22(1),
                         m_tx(0), m_ty(0)
    {
    }

    // Implement base class pure virtual methods.
    virtual void Set(const wxMatrix2D& mat2D, const wxPoint2DDouble& tr);
    virtual void Get(wxMatrix2D* mat2D, wxPoint2DDouble* tr) const;
    virtual void Concat(const wxAffineMatrix2DBase& t);
    virtual bool Invert();
    virtual bool IsIdentity() const;
    virtual bool IsEqual(const wxAffineMatrix2DBase& t) const;
    virtual void Translate(wxDouble dx, wxDouble dy);
    virtual void Scale(wxDouble xScale, wxDouble yScale);
    virtual void Rotate(wxDouble cRadians);

protected:
    virtual wxPoint2DDouble DoTransformPoint(const wxPoint2DDouble& p) const;
    virtual wxPoint2DDouble DoTransformDistance(const wxPoint2DDouble& p) const;

private:
    wxDouble m_11, m_12, m_21, m_22, m_tx, m_ty;
};

#endif // wxUSE_GEOMETRY

#endif // _WX_AFFINEMATRIX2D_H_