-
Notifications
You must be signed in to change notification settings - Fork 5
/
color.cpp
160 lines (145 loc) · 3.5 KB
/
color.cpp
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/******************************************************/
/* */
/* color.cpp - colors for points and triangles */
/* */
/******************************************************/
/* Copyright 2020,2021 Pierre Abbat.
* This file is part of PerfectTIN.
*
* PerfectTIN is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* PerfectTIN is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License and Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* and Lesser General Public License along with PerfectTIN. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include "color.h"
#include "neighbor.h"
using namespace std;
Color::Color(double red,double green,double blue)
{
r=min(1.,max(0.,red));
g=min(1.,max(0.,green));
b=min(1.,max(0.,blue));
}
Color::Color()
{
r=g=b=0;
}
void Color::mix(const Color &diluent,double part)
{
r=(r*(1-part)+diluent.r*part);
g=(g*(1-part)+diluent.g*part);
b=(b*(1-part)+diluent.b*part);
}
const Color white(1,1,1);
Colorize::Colorize()
{
high=low=NAN;
ori=0;
scheme=CS_GRADIENT;
}
Color Colorize::gradientColor(xy gradient)
{
double r,g,b;
r=0.5+gradient.north()*0.1294+gradient.east()*0.483;
g=0.5+gradient.north()*0.3535-gradient.east()*0.3535;
b=0.5-gradient.north()*0.483 -gradient.east()*0.1294;
return Color(r,g,b);
}
Color Colorize::elevationColor(double elevation)
{
double x,y,r,g,b;
x=(elevation-low)/(high-low)*M_PI;
y=sin(x);
r=(x-y)/M_PI;
g=y;
b=(M_PI-x-y)/M_PI;
return Color(r,g,b);
}
void Colorize::setLimits(double l,double h)
{
low=l;
high=h;
}
void Colorize::setOrientation(int o)
{
ori=o;
}
void Colorize::setScheme(int s)
{
scheme=s;
}
int Colorize::getScheme()
{
return scheme;
}
Color Colorize::operator()(point *pnt)
{
Color ret;
vector<point *> pnt1(1,pnt);
vector<triangle *> tris;
xy sumGradient;
int i,nEmpty=0;
tris=triangleNeighbors(pnt1);
for (i=0;i<tris.size();i++)
nEmpty+=tris[i]->dots.size()==0;
switch (scheme)
{
case CS_GRADIENT:
for (i=0;i<tris.size();i++)
if (tris[i]->a)
sumGradient+=tris[i]->gradient(tris[i]->centroid());
sumGradient/=tris.size();
ret=gradientColor(sumGradient);
break;
case CS_ELEVATION:
if (pnt)
ret=elevationColor(pnt->elev());
break;
}
ret.mix(white,nEmpty/2./tris.size());
return ret;
}
Color Colorize::operator()(triangle *tri)
{
Color ret;
switch (scheme)
{
case CS_GRADIENT:
if (tri->a)
ret=gradientColor(tri->gradient(tri->centroid()));
break;
case CS_ELEVATION:
if (tri->a)
ret=elevationColor(tri->elevation(tri->centroid()));
break;
}
if (tri->dots.size()==0)
ret.mix(white,0.5);
return ret;
}
Color Colorize::operator()(ContourInterval &ci,segment &seg)
{
Color ret;
int n=ci.contourType(seg.getstart().elev())&0xff;
// n ranges from 0 (index contour) to 16
switch (scheme)
{
case CS_GRADIENT:
ret=Color(n/25.,n?0.9:1,(16-n)/25.);
break;
case CS_ELEVATION:
ret=Color(n/25.,n?0.4:0.3,(16-n)/25.);
break;
}
return ret;
}