0
|
1 |
/****************************************************************************
|
|
2 |
**
|
|
3 |
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
4 |
** All rights reserved.
|
|
5 |
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
6 |
**
|
|
7 |
** This file is part of the test suite of the Qt Toolkit.
|
|
8 |
**
|
|
9 |
** $QT_BEGIN_LICENSE:LGPL$
|
|
10 |
** No Commercial Usage
|
|
11 |
** This file contains pre-release code and may not be distributed.
|
|
12 |
** You may use this file in accordance with the terms and conditions
|
|
13 |
** contained in the Technology Preview License Agreement accompanying
|
|
14 |
** this package.
|
|
15 |
**
|
|
16 |
** GNU Lesser General Public License Usage
|
|
17 |
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
18 |
** General Public License version 2.1 as published by the Free Software
|
|
19 |
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
20 |
** packaging of this file. Please review the following information to
|
|
21 |
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
22 |
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
23 |
**
|
|
24 |
** In addition, as a special exception, Nokia gives you certain additional
|
|
25 |
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
26 |
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
27 |
**
|
|
28 |
** If you have questions regarding the use of this file, please contact
|
|
29 |
** Nokia at qt-info@nokia.com.
|
|
30 |
**
|
|
31 |
**
|
|
32 |
**
|
|
33 |
**
|
|
34 |
**
|
|
35 |
**
|
|
36 |
**
|
|
37 |
**
|
|
38 |
** $QT_END_LICENSE$
|
|
39 |
**
|
|
40 |
****************************************************************************/
|
|
41 |
#include "utils.h"
|
|
42 |
|
|
43 |
#include <assert.h>
|
|
44 |
#include <qglobal.h>
|
|
45 |
|
|
46 |
#include "qnum.h"
|
|
47 |
|
|
48 |
#define FloatToXFixed(i) (int)((i) * 65536)
|
|
49 |
#define IntToXFixed(i) ((i) << 16)
|
|
50 |
|
|
51 |
static double compute_x_at(XFixed y, XPointFixed p1, XPointFixed p2)
|
|
52 |
{
|
|
53 |
double d = XFixedToDouble(p2.x - p1.x);
|
|
54 |
return
|
|
55 |
XFixedToDouble(p1.x) + d*XFixedToDouble(y - p1.y)/XFixedToDouble(p2.y - p1.y);
|
|
56 |
}
|
|
57 |
|
|
58 |
double compute_area(XTrapezoid *trap)
|
|
59 |
{
|
|
60 |
double x1 = compute_x_at(trap->top, trap->left.p1, trap->left.p2);
|
|
61 |
double x2 = compute_x_at(trap->top, trap->right.p1, trap->right.p2);
|
|
62 |
double x3 = compute_x_at(trap->bottom, trap->left.p1, trap->left.p2);
|
|
63 |
double x4 = compute_x_at(trap->bottom, trap->right.p1, trap->right.p2);
|
|
64 |
|
|
65 |
double top = XFixedToDouble(trap->top);
|
|
66 |
double bottom = XFixedToDouble(trap->bottom);
|
|
67 |
double h = bottom - top;
|
|
68 |
|
|
69 |
double top_base = x2 - x1;
|
|
70 |
double bottom_base = x4 - x3;
|
|
71 |
|
|
72 |
if ((top_base < 0 && bottom_base > 0)
|
|
73 |
|| (top_base > 0 && bottom_base < 0)) {
|
|
74 |
double y0 = top_base*h/(top_base - bottom_base) + top;
|
|
75 |
double area = qAbs(top_base * (y0 - top) / 2.);
|
|
76 |
area += qAbs(bottom_base * (bottom - y0) /2.);
|
|
77 |
return area;
|
|
78 |
}
|
|
79 |
|
|
80 |
|
|
81 |
return 0.5 * h * qAbs(top_base + bottom_base);
|
|
82 |
}
|
|
83 |
|
|
84 |
double compute_area_for_x(const QVector<XTrapezoid> &traps)
|
|
85 |
{
|
|
86 |
double area = 0;
|
|
87 |
|
|
88 |
for (int i = 0; i < traps.size(); ++i) {
|
|
89 |
XTrapezoid trap = traps[i];
|
|
90 |
area += compute_area(&trap);
|
|
91 |
}
|
|
92 |
return area;
|
|
93 |
}
|