forked from mapnik/mapnik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradient.cpp
151 lines (132 loc) · 3.37 KB
/
gradient.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
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
*
* This library 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 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
#include <mapnik/gradient.hpp>
#include <mapnik/enumeration.hpp>
namespace mapnik
{
static const char * gradient_strings[] = {
"no-gradient",
"linear",
"radial",
""
};
IMPLEMENT_ENUM( gradient_e, gradient_strings )
static const char * gradient_unit_strings[] = {
"user-space-on-use",
"user-space-on-use-bounding-box",
"object-bounding-box",
""
};
IMPLEMENT_ENUM( gradient_unit_e, gradient_unit_strings )
gradient::gradient()
: gradient_type_(NO_GRADIENT),
stops_(),
x1_(0),
y1_(0),
x2_(0),
y2_(0),
r_(0),
units_(OBJECT_BOUNDING_BOX),
transform_()
{}
gradient::gradient(gradient const& other)
: gradient_type_(other.gradient_type_),
stops_(other.stops_),
x1_(other.x1_),
y1_(other.y1_),
x2_(other.x2_),
y2_(other.y2_),
r_(other.r_),
units_(other.units_),
transform_(other.transform_)
{}
gradient & gradient::operator=(const gradient& rhs)
{
gradient tmp(rhs);
swap(tmp);
return *this;
}
void gradient::set_gradient_type(gradient_e grad)
{
gradient_type_=grad;
}
gradient_e gradient::get_gradient_type() const
{
return gradient_type_;
}
void gradient::set_transform(agg::trans_affine const& transform)
{
transform_ = transform;
}
agg::trans_affine const& gradient::get_transform() const
{
return transform_;
}
void gradient::set_units(gradient_unit_e units)
{
units_ = units;
}
gradient_unit_e gradient::get_units() const
{
return units_;
}
void gradient::add_stop(double offset,mapnik::color const& c)
{
stops_.push_back(mapnik::stop_pair(offset,c));
}
bool gradient::has_stop() const
{
return ! stops_.empty();
}
stop_array const& gradient::get_stop_array() const
{
return stops_;
}
void gradient::swap(const gradient& other) throw()
{
gradient_type_=other.gradient_type_;
stops_=other.stops_;
units_=other.units_;
transform_=other.transform_;
other.get_control_points(x1_,y1_,x2_,y2_,r_);
}
void gradient::set_control_points(double x1, double y1, double x2, double y2, double r)
{
x1_ = x1;
y1_ = y1;
x2_ = x2;
y2_ = y2;
r_ = r;
}
void gradient::get_control_points(double &x1, double &y1, double &x2, double &y2, double &r) const
{
get_control_points(x1,y1,x2,y2);
r=r_;
}
void gradient::get_control_points(double &x1, double &y1, double &x2, double &y2) const
{
x1 = x1_;
y1 = y1_;
x2 = x2_;
y2 = y2_;
}
}