FHTransform.h
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2/*
3 * This file is part of the libfreehand project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
9
10#ifndef __FHTRANSFORM_H__
11#define __FHTRANSFORM_H__
12
13#include <math.h>
14
15namespace libfreehand
16{
17
19{
21 FHTransform(double m11, double m21, double m12, double m22, double m13, double m23);
22 FHTransform(const FHTransform &trafo);
23
24 void applyToPoint(double &x, double &y) const;
25 void applyToArc(double &rx, double &ry, double &rotation, bool &sweep, double &endx, double &endy) const;
26
27 double m_m11;
28 double m_m21;
29 double m_m12;
30 double m_m22;
31 double m_m13;
32 double m_m23;
33};
34
35} // namespace libfreehand
36
37#endif /* __FHTRANSFORM_H__ */
38/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition FHCollector.h:23
Definition FHTransform.h:19
double m_m23
Definition FHTransform.h:32
void applyToArc(double &rx, double &ry, double &rotation, bool &sweep, double &endx, double &endy) const
Definition FHTransform.cpp:37
double m_m11
Definition FHTransform.h:27
FHTransform()
Definition FHTransform.cpp:14
double m_m13
Definition FHTransform.h:31
double m_m21
Definition FHTransform.h:28
double m_m22
Definition FHTransform.h:30
void applyToPoint(double &x, double &y) const
Definition FHTransform.cpp:30
double m_m12
Definition FHTransform.h:29

Generated for libfreehand by doxygen 1.9.7