/usr/include/libgnomecanvasmm-2.6/libgnomecanvasmm/affinetrans.h is in libgnomecanvasmm-2.6-dev 2.26.0-1.1.
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 | #ifndef _LIBGNOMECANVASMM_AFFINETRANS_H
#define _LIBGNOMECANVASMM_AFFINETRANS_H
// -*- C++ -*-
/* $Id: affinetrans.h 2019 2009-01-27 08:29:42Z murrayc $ */
/* affinetrans.h
*
* Copyright (C) 1999 The gnomemm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <glibmm/containers.h>
#include <libgnomecanvasmm/point.h>
namespace Gnome
{
namespace Art
{
//: Used by CanvasItem.
class AffineTrans
{
public:
//: Initialize the affine as unit matrix, with a scaling factor
AffineTrans(double scale = 1.0);
//: aff[6]
explicit AffineTrans(const double aff[6]);
AffineTrans(const AffineTrans& src);
AffineTrans& operator=(const AffineTrans& src);
~AffineTrans();
double& operator[](unsigned int idx);
const double& operator[](unsigned int idx) const;
double* gobj();
const double* gobj() const;
//: Apply the affine to a given point
//: e.g. Point dst = affine.apply(Point(x,y));
//: is the same as:
//: dst.x = x * affine[0] + y * affine[2] + affine[4];
//: dst.y = x * affine[1] + y * affine[3] + affine[5];
Point apply_to(const Point& p) const;
//: Apply the affine to a given point
Point operator*(const Point& p) const;
//: Compose two affines
AffineTrans operator*(const AffineTrans& aff2);
//: Apply other affine to the affine
AffineTrans const & operator*=(AffineTrans& other);
bool operator==(const AffineTrans& other) const;
bool operator!=(const AffineTrans& other) const;
//: Give the inverse of the affine
void invert();
//: Flip horizontally and/or vertically the affine
void flip(bool horiz, bool vert);
//: Determine whether the affine is rectilinear (rotates 0, 90, 180 or 270 degrees)
bool rectilinear() const;
//: Find the affine's "expansion factor", i.e. the scale amount
double expansion() const;
//: Set up the identity matrix
static AffineTrans identity();
//: Set up a scaling matrix
static AffineTrans scaling(double s);
//: Set up a scaling matrix
static AffineTrans scaling(double sx, double sy);
//: Set up a rotation matrix; theta is given in degrees
static AffineTrans rotation(double theta);
//: Set up a shearing matrix; theta given in degrees
static AffineTrans shearing(double theta);
//: Set up a translation matrix
static AffineTrans translation(double dx, double dy);
//: Set up a translation matrix
static AffineTrans translation(const Point& p);
Glib::ustring to_string() const;
protected:
double trans_[6];
};
} //namespace Art
} /* namespace Gnome */
std::ostream& operator<<(std::ostream& out, const Gnome::Art::AffineTrans& aff);
#endif // _GNOMEMM_AFFINETRANS_H
|