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 
15 namespace libfreehand
16 {
17 
19 {
20  FHTransform();
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: */
libfreehand::FHTransform::applyToArc
void applyToArc(double &rx, double &ry, double &rotation, bool &sweep, double &endx, double &endy) const
Definition: FHTransform.cpp:37
FHTransform.h
libfreehand_utils.h
M_PI
#define M_PI
Definition: libfreehand_utils.h:26
libfreehand
Definition: FHCollector.h:23
libfreehand::FHTransform
Definition: FHTransform.h:19
libfreehand::FHTransform::m_m22
double m_m22
Definition: FHTransform.h:30
libfreehand::FHTransform::m_m23
double m_m23
Definition: FHTransform.h:32
libfreehand::FHTransform::applyToPoint
void applyToPoint(double &x, double &y) const
Definition: FHTransform.cpp:30
libfreehand::FHTransform::m_m13
double m_m13
Definition: FHTransform.h:31
libfreehand::FHTransform::FHTransform
FHTransform()
Definition: FHTransform.cpp:14
libfreehand::FHTransform::m_m21
double m_m21
Definition: FHTransform.h:28
libfreehand::FHTransform::m_m11
double m_m11
Definition: FHTransform.h:27
libfreehand::FHTransform::m_m12
double m_m12
Definition: FHTransform.h:29
FH_ALMOST_ZERO
#define FH_ALMOST_ZERO(m)
Definition: libfreehand_utils.h:30

Generated for libfreehand by doxygen 1.8.20