• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdelibs API Reference
  • KDE Home
  • Contact Us
 

KHTML

  • sources
  • kde-4.12
  • kdelibs
  • khtml
  • platform
  • graphics
AffineTransform.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25 
26 #include "config.h"
27 #include "wtf/Platform.h"
28 #include "AffineTransform.h"
29 
30 #include "FloatRect.h"
31 #include "IntRect.h"
32 
33 #include <wtf/MathExtras.h>
34 
35 namespace WebCore {
36 
37 bool AffineTransform::isInvertible() const
38 {
39  return det() != 0.0;
40 }
41 
42 AffineTransform& AffineTransform::multiply(const AffineTransform& other)
43 {
44  return (*this) *= other;
45 }
46 
47 AffineTransform& AffineTransform::scale(double s)
48 {
49  return scale(s, s);
50 }
51 
52 AffineTransform& AffineTransform::scaleNonUniform(double sx, double sy)
53 {
54  return scale(sx, sy);
55 }
56 
57 AffineTransform& AffineTransform::rotateFromVector(double x, double y)
58 {
59  return rotate(rad2deg(atan2(y, x)));
60 }
61 
62 AffineTransform& AffineTransform::flipX()
63 {
64  return scale(-1.0f, 1.0f);
65 }
66 
67 AffineTransform& AffineTransform::flipY()
68 {
69  return scale(1.0f, -1.0f);
70 }
71 
72 AffineTransform& AffineTransform::skew(double angleX, double angleY)
73 {
74  return shear(tan(deg2rad(angleX)), tan(deg2rad(angleY)));
75 }
76 
77 AffineTransform& AffineTransform::skewX(double angle)
78 {
79  return shear(tan(deg2rad(angle)), 0.0f);
80 }
81 
82 AffineTransform& AffineTransform::skewY(double angle)
83 {
84  return shear(0.0f, tan(deg2rad(angle)));
85 }
86 
87 IntPoint AffineTransform::mapPoint(const IntPoint& point) const
88 {
89  double x2, y2;
90  map(point.x(), point.y(), &x2, &y2);
91 
92  // Round the point.
93  return IntPoint(lround(x2), lround(y2));
94 }
95 
96 FloatPoint AffineTransform::mapPoint(const FloatPoint& point) const
97 {
98  double x2, y2;
99  map(point.x(), point.y(), &x2, &y2);
100 
101  return FloatPoint(static_cast<float>(x2), static_cast<float>(y2));
102 }
103 
104 }
WebCore::AffineTransform::map
void map(double x, double y, double *x2, double *y2) const
Definition: AffineTransformQt.cpp:55
WebCore::AffineTransform::skewX
AffineTransform & skewX(double angle)
Definition: AffineTransform.cpp:77
WebCore::AffineTransform::shear
AffineTransform & shear(double sx, double sy)
Definition: AffineTransformQt.cpp:161
WebCore::AffineTransform::scale
AffineTransform & scale(double)
Definition: AffineTransform.cpp:47
WebCore::AffineTransform::rotate
AffineTransform & rotate(double d)
Definition: AffineTransformQt.cpp:149
WebCore::AffineTransform::f
double f() const
Definition: AffineTransformQt.cpp:128
IntRect.h
WebCore::AffineTransform::isInvertible
bool isInvertible() const
Definition: AffineTransform.cpp:37
WebCore::AffineTransform::flipY
AffineTransform & flipY()
Definition: AffineTransform.cpp:67
WebCore::IntPoint::y
int y() const
Definition: IntPoint.h:70
WebCore::FloatPoint
Definition: FloatPoint.h:61
WebCore::AffineTransform
Definition: AffineTransform.h:47
AffineTransform.h
WebCore::IntPoint::x
int x() const
Definition: IntPoint.h:69
WebCore::AffineTransform::mapPoint
IntPoint mapPoint(const IntPoint &) const
Definition: AffineTransform.cpp:87
WebCore::AffineTransform::flipX
AffineTransform & flipX()
Definition: AffineTransform.cpp:62
WebCore::FloatPoint::y
float y() const
Definition: FloatPoint.h:70
WebCore::FloatPoint::x
float x() const
Definition: FloatPoint.h:69
WebCore::AffineTransform::scaleNonUniform
AffineTransform & scaleNonUniform(double sx, double sy)
Definition: AffineTransform.cpp:52
FloatRect.h
WebCore::AffineTransform::multiply
AffineTransform & multiply(const AffineTransform &)
Definition: AffineTransform.cpp:42
WebCore::AffineTransform::det
double det() const
Definition: AffineTransformQt.cpp:167
WebCore::AffineTransform::rotateFromVector
AffineTransform & rotateFromVector(double x, double y)
Definition: AffineTransform.cpp:57
WebCore::IntPoint
Definition: IntPoint.h:64
WebCore::AffineTransform::skew
AffineTransform & skew(double angleX, double angleY)
Definition: AffineTransform.cpp:72
WebCore::AffineTransform::skewY
AffineTransform & skewY(double angle)
Definition: AffineTransform.cpp:82
This file is part of the KDE documentation.
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:51:20 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

KHTML

Skip menu "KHTML"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdelibs API Reference

Skip menu "kdelibs API Reference"
  • DNSSD
  • Interfaces
  •   KHexEdit
  •   KMediaPlayer
  •   KSpeech
  •   KTextEditor
  • kconf_update
  • KDE3Support
  •   KUnitTest
  • KDECore
  • KDED
  • KDEsu
  • KDEUI
  • KDEWebKit
  • KDocTools
  • KFile
  • KHTML
  • KImgIO
  • KInit
  • kio
  • KIOSlave
  • KJS
  •   KJS-API
  • kjsembed
  •   WTF
  • KNewStuff
  • KParts
  • KPty
  • Kross
  • KUnitConversion
  • KUtils
  • Nepomuk
  • Nepomuk-Core
  • Nepomuk
  • Plasma
  • Solid
  • Sonnet
  • ThreadWeaver

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal