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
|
// Copyright (c) 2000-2001 Brad Hughes <bhughes@trolltech.com>
//
// Use, modification and distribution is allowed without limitation,
// warranty, or liability of any kind.
//
#include "logscale.h"
#include <math.h>
#include <stdio.h>
LogScale::LogScale(int maxscale, int maxrange)
: indices(0), s(0), r(0)
{
setMax(maxscale, maxrange);
}
LogScale::~LogScale()
{
if (indices)
delete [] indices;
}
void LogScale::setMax(int maxscale, int maxrange)
{
if (maxscale == 0 || maxrange == 0)
return;
s = maxscale;
r = maxrange;
if (indices)
delete [] indices;
double alpha;
int i, scaled;
double domain = double(maxscale),
range = double(maxrange),
x = 1.0,
dx = 1.0,
y = 0.0,
yy = 0.0,
t = 0.0,
e4 = double(1.0E-8);
indices = new int[maxrange];
for (i = 0; i < maxrange; i++)
indices[i] = 0;
// initialize log scale
while (fabs(dx) > e4) {
t = log((domain + x) / x);
y = (x * t) - range;
yy = t - (domain / (x + domain));
dx = y / yy;
x -= dx;
}
alpha = x;
for (i = 1; i < (int) domain; i++) {
scaled = (int) floor(0.5 + (alpha * log((double(i) + alpha) / alpha)));
if (indices[scaled - 1] < i)
indices[scaled - 1] = i;
}
}
int LogScale::operator[](int index)
{
return indices[index];
}
|