author | unC0Rr |
Tue, 15 Nov 2022 14:27:22 +0100 | |
changeset 15921 | 5b3beb90e1a6 |
parent 15850 | 44b49f255e31 |
child 15930 | f39f0f614dbf |
permissions | -rw-r--r-- |
15850 | 1 |
use std::{cmp, ops::Index}; |
13938 | 2 |
|
15850 | 3 |
use integral_geometry::{ArcPoints, EquidistantPoints, Line, Point, PotSize, Rect, Size, SizeMask}; |
13959
1fa905aa4cdb
move point struct into integral-geometry and use it to refactor a bit
alfadur
parents:
13957
diff
changeset
|
4 |
|
13938 | 5 |
pub struct Land2D<T> { |
6 |
pixels: vec2d::Vec2D<T>, |
|
14158
3119d665d3c6
collapse rectangle types back together with consistent usage of size
alfadur
parents:
14156
diff
changeset
|
7 |
play_box: Rect, |
14099 | 8 |
mask: SizeMask, |
13938 | 9 |
} |
10 |
||
13952 | 11 |
impl<T: Copy + PartialEq> Land2D<T> { |
14073 | 12 |
pub fn new(play_size: Size, fill_value: T) -> Self { |
13 |
let real_size = play_size.next_power_of_two(); |
|
14099 | 14 |
let top_left = Point::new( |
15850 | 15 |
((real_size.width() - play_size.width) / 2) as i32, |
16 |
(real_size.height() - play_size.height) as i32, |
|
14099 | 17 |
); |
14158
3119d665d3c6
collapse rectangle types back together with consistent usage of size
alfadur
parents:
14156
diff
changeset
|
18 |
let play_box = Rect::from_size(top_left, play_size); |
13938 | 19 |
Self { |
14099 | 20 |
play_box, |
15850 | 21 |
pixels: vec2d::Vec2D::new(real_size.size(), fill_value), |
14099 | 22 |
mask: real_size.to_mask(), |
13938 | 23 |
} |
24 |
} |
|
25 |
||
14142 | 26 |
pub fn raw_pixels(&self) -> &[T] { |
14181 | 27 |
&self.pixels.as_slice() |
14142 | 28 |
} |
29 |
||
14723 | 30 |
pub fn raw_pixel_bytes(&self) -> &[u8] { |
15850 | 31 |
unsafe { self.pixels.as_bytes() } |
14723 | 32 |
} |
33 |
||
13938 | 34 |
#[inline] |
13945 | 35 |
pub fn width(&self) -> usize { |
36 |
self.pixels.width() |
|
37 |
} |
|
38 |
||
39 |
#[inline] |
|
40 |
pub fn height(&self) -> usize { |
|
41 |
self.pixels.height() |
|
42 |
} |
|
43 |
||
44 |
#[inline] |
|
15850 | 45 |
pub fn size(&self) -> PotSize { |
46 |
self.mask.to_size() |
|
14073 | 47 |
} |
48 |
||
49 |
#[inline] |
|
14071
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
50 |
pub fn play_width(&self) -> usize { |
14156
7f5a591e1c43
separate rectangle types based on right/bottom edge inclusivity
alfadur
parents:
14142
diff
changeset
|
51 |
self.play_box.width() |
14071
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
52 |
} |
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
53 |
|
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
54 |
#[inline] |
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
55 |
pub fn play_height(&self) -> usize { |
14156
7f5a591e1c43
separate rectangle types based on right/bottom edge inclusivity
alfadur
parents:
14142
diff
changeset
|
56 |
self.play_box.height() |
14073 | 57 |
} |
58 |
||
59 |
#[inline] |
|
60 |
pub fn play_size(&self) -> Size { |
|
14156
7f5a591e1c43
separate rectangle types based on right/bottom edge inclusivity
alfadur
parents:
14142
diff
changeset
|
61 |
self.play_box.size() |
14071
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
62 |
} |
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
63 |
|
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
64 |
#[inline] |
14158
3119d665d3c6
collapse rectangle types back together with consistent usage of size
alfadur
parents:
14156
diff
changeset
|
65 |
pub fn play_box(&self) -> Rect { |
14099 | 66 |
self.play_box |
67 |
} |
|
68 |
||
69 |
#[inline] |
|
13952 | 70 |
pub fn is_valid_x(&self, x: i32) -> bool { |
14053 | 71 |
self.mask.contains_x(x as usize) |
13952 | 72 |
} |
73 |
||
74 |
#[inline] |
|
75 |
pub fn is_valid_y(&self, y: i32) -> bool { |
|
14053 | 76 |
self.mask.contains_y(y as usize) |
13952 | 77 |
} |
78 |
||
79 |
#[inline] |
|
13945 | 80 |
pub fn is_valid_coordinate(&self, x: i32, y: i32) -> bool { |
13952 | 81 |
self.is_valid_x(x) && self.is_valid_y(y) |
13938 | 82 |
} |
83 |
||
84 |
#[inline] |
|
14191 | 85 |
pub fn rows(&self) -> impl DoubleEndedIterator<Item = &[T]> { |
14051 | 86 |
self.pixels.rows() |
87 |
} |
|
88 |
||
89 |
#[inline] |
|
13961
1c30793b1cea
put back land2d.map accidentally replaced by testing code
alfadur
parents:
13959
diff
changeset
|
90 |
pub fn map<U: Default, F: FnOnce(&mut T) -> U>(&mut self, y: i32, x: i32, f: F) -> U { |
13938 | 91 |
if self.is_valid_coordinate(x, y) { |
13955
9c112f2ae02d
Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents:
13952
diff
changeset
|
92 |
unsafe { |
9c112f2ae02d
Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents:
13952
diff
changeset
|
93 |
// hey, I just checked that coordinates are valid! |
13961
1c30793b1cea
put back land2d.map accidentally replaced by testing code
alfadur
parents:
13959
diff
changeset
|
94 |
f(self.pixels.get_unchecked_mut(y as usize, x as usize)) |
13952 | 95 |
} |
13955
9c112f2ae02d
Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents:
13952
diff
changeset
|
96 |
} else { |
13961
1c30793b1cea
put back land2d.map accidentally replaced by testing code
alfadur
parents:
13959
diff
changeset
|
97 |
U::default() |
13938 | 98 |
} |
99 |
} |
|
100 |
||
13965
4162ea9ae333
Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents:
13964
diff
changeset
|
101 |
#[inline] |
4162ea9ae333
Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents:
13964
diff
changeset
|
102 |
pub fn map_point<U: Default, F: FnOnce(&mut T) -> U>(&mut self, point: Point, f: F) -> U { |
4162ea9ae333
Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents:
13964
diff
changeset
|
103 |
self.map(point.y, point.x, f) |
13955
9c112f2ae02d
Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents:
13952
diff
changeset
|
104 |
} |
9c112f2ae02d
Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents:
13952
diff
changeset
|
105 |
|
13959
1fa905aa4cdb
move point struct into integral-geometry and use it to refactor a bit
alfadur
parents:
13957
diff
changeset
|
106 |
pub fn fill_from_iter<I>(&mut self, i: I, value: T) -> usize |
13964
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
107 |
where |
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
108 |
I: std::iter::Iterator<Item = Point>, |
13959
1fa905aa4cdb
move point struct into integral-geometry and use it to refactor a bit
alfadur
parents:
13957
diff
changeset
|
109 |
{ |
13964
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
110 |
i.map(|p| { |
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
111 |
self.map(p.y, p.x, |v| { |
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
112 |
*v = value; |
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
113 |
1 |
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
114 |
}) |
15850 | 115 |
}) |
116 |
.count() |
|
13959
1fa905aa4cdb
move point struct into integral-geometry and use it to refactor a bit
alfadur
parents:
13957
diff
changeset
|
117 |
} |
1fa905aa4cdb
move point struct into integral-geometry and use it to refactor a bit
alfadur
parents:
13957
diff
changeset
|
118 |
|
14097
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14073
diff
changeset
|
119 |
pub fn draw_line(&mut self, line: Line, value: T) -> usize { |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14073
diff
changeset
|
120 |
self.fill_from_iter(line.into_iter(), value) |
13938 | 121 |
} |
13945 | 122 |
|
13969 | 123 |
pub fn fill(&mut self, start_point: Point, border_value: T, fill_value: T) { |
14171 | 124 |
assert!(self.is_valid_coordinate(start_point.x - 1, start_point.y)); |
125 |
assert!(self.is_valid_coordinate(start_point.x, start_point.y)); |
|
13945 | 126 |
|
14169 | 127 |
let mask = self.mask; |
128 |
let width = self.width(); |
|
129 |
||
13945 | 130 |
let mut stack: Vec<(usize, usize, usize, isize)> = Vec::new(); |
14169 | 131 |
fn push( |
132 |
mask: SizeMask, |
|
13945 | 133 |
stack: &mut Vec<(usize, usize, usize, isize)>, |
134 |
xl: usize, |
|
135 |
xr: usize, |
|
136 |
y: usize, |
|
137 |
dir: isize, |
|
138 |
) { |
|
139 |
let yd = y as isize + dir; |
|
14169 | 140 |
if mask.contains_y(yd as usize) { |
13945 | 141 |
stack.push((xl, xr, yd as usize, dir)); |
142 |
} |
|
15921
5b3beb90e1a6
Implement generation of c header from rust interface, adapt qmlfrontend
unC0Rr
parents:
15850
diff
changeset
|
143 |
} |
13945 | 144 |
|
13969 | 145 |
let start_x_l = (start_point.x - 1) as usize; |
146 |
let start_x_r = start_point.x as usize; |
|
14169 | 147 |
for dir in [-1, 1].iter().cloned() { |
15850 | 148 |
push( |
149 |
mask, |
|
150 |
&mut stack, |
|
151 |
start_x_l, |
|
152 |
start_x_r, |
|
153 |
start_point.y as usize, |
|
154 |
dir, |
|
155 |
); |
|
14169 | 156 |
} |
13945 | 157 |
|
14169 | 158 |
while let Some((mut xl, mut xr, y, dir)) = stack.pop() { |
159 |
let row = &mut self.pixels[y][..]; |
|
15850 | 160 |
while xl > 0 && row[xl] != border_value && row[xl] != fill_value { |
13972 | 161 |
xl -= 1; |
162 |
} |
|
13945 | 163 |
|
15850 | 164 |
while xr < width - 1 && row[xr] != border_value && row[xr] != fill_value { |
13972 | 165 |
xr += 1; |
166 |
} |
|
13945 | 167 |
|
13972 | 168 |
while xl < xr { |
15850 | 169 |
while xl <= xr && (row[xl] == border_value || row[xl] == fill_value) { |
13972 | 170 |
xl += 1; |
171 |
} |
|
13945 | 172 |
|
14169 | 173 |
let x = xl; |
13945 | 174 |
|
15850 | 175 |
while xl <= xr && row[xl] != border_value && row[xl] != fill_value { |
14169 | 176 |
row[xl] = fill_value; |
13972 | 177 |
xl += 1; |
178 |
} |
|
13945 | 179 |
|
13972 | 180 |
if x < xl { |
14169 | 181 |
push(mask, &mut stack, x, xl - 1, y, dir); |
182 |
push(mask, &mut stack, x, xl - 1, y, -dir); |
|
13945 | 183 |
} |
184 |
} |
|
185 |
} |
|
186 |
} |
|
13952 | 187 |
|
188 |
#[inline] |
|
189 |
fn fill_circle_line<F: Fn(&mut T) -> usize>( |
|
190 |
&mut self, |
|
191 |
y: i32, |
|
192 |
x_from: i32, |
|
193 |
x_to: i32, |
|
194 |
f: &F, |
|
195 |
) -> usize { |
|
196 |
let mut result = 0; |
|
197 |
||
198 |
if self.is_valid_y(y) { |
|
199 |
for i in cmp::min(x_from, 0) as usize..cmp::max(x_to as usize, self.width() - 1) { |
|
13955
9c112f2ae02d
Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents:
13952
diff
changeset
|
200 |
unsafe { |
9c112f2ae02d
Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents:
13952
diff
changeset
|
201 |
// coordinates are valid at this point |
13952 | 202 |
result += f(self.pixels.get_unchecked_mut(y as usize, i)); |
203 |
} |
|
204 |
} |
|
205 |
} |
|
206 |
||
207 |
result |
|
208 |
} |
|
209 |
||
210 |
#[inline] |
|
211 |
fn fill_circle_lines<F: Fn(&mut T) -> usize>( |
|
212 |
&mut self, |
|
213 |
x: i32, |
|
214 |
y: i32, |
|
215 |
dx: i32, |
|
216 |
dy: i32, |
|
217 |
f: &F, |
|
218 |
) -> usize { |
|
219 |
self.fill_circle_line(y + dy, x - dx, x + dx, f) |
|
220 |
+ self.fill_circle_line(y - dy, x - dx, x + dx, f) |
|
221 |
+ self.fill_circle_line(y + dx, x - dy, x + dy, f) |
|
222 |
+ self.fill_circle_line(y - dx, x - dy, x + dy, f) |
|
223 |
} |
|
224 |
||
225 |
pub fn change_round<F: Fn(&mut T) -> usize>( |
|
226 |
&mut self, |
|
227 |
x: i32, |
|
228 |
y: i32, |
|
229 |
radius: i32, |
|
230 |
f: F, |
|
231 |
) -> usize { |
|
13964
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
232 |
ArcPoints::new(radius) |
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
233 |
.map(&mut |p: Point| self.fill_circle_lines(x, y, p.x, p.y, &f)) |
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
234 |
.sum() |
13955
9c112f2ae02d
Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents:
13952
diff
changeset
|
235 |
} |
13952 | 236 |
|
14052 | 237 |
fn fill_row(&mut self, center: Point, offset: Point, value: T) -> usize { |
238 |
let row_index = center.y + offset.y; |
|
239 |
if self.is_valid_y(row_index) { |
|
240 |
let from_x = cmp::max(0, center.x - offset.x) as usize; |
|
241 |
let to_x = cmp::min(self.width() - 1, (center.x + offset.x) as usize); |
|
242 |
self.pixels[row_index as usize][from_x..=to_x] |
|
14099 | 243 |
.iter_mut() |
244 |
.for_each(|v| *v = value); |
|
14052 | 245 |
to_x - from_x + 1 |
246 |
} else { |
|
247 |
0 |
|
248 |
} |
|
249 |
} |
|
250 |
||
251 |
pub fn fill_circle(&mut self, center: Point, radius: i32, value: T) -> usize { |
|
14099 | 252 |
let transforms = [[0, 1, 1, 0], [0, 1, -1, 0], [1, 0, 0, 1], [1, 0, 0, -1]]; |
253 |
ArcPoints::new(radius) |
|
254 |
.map(|vector| { |
|
255 |
transforms |
|
256 |
.iter() |
|
257 |
.map(|m| self.fill_row(center, vector.transform(m), value)) |
|
258 |
.sum::<usize>() |
|
15850 | 259 |
}) |
260 |
.sum() |
|
14052 | 261 |
} |
262 |
||
14097
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14073
diff
changeset
|
263 |
pub fn draw_thick_line(&mut self, line: Line, radius: i32, value: T) -> usize { |
13965
4162ea9ae333
Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents:
13964
diff
changeset
|
264 |
let mut result = 0; |
13952 | 265 |
|
13970
a1895019bb94
change draw_thick_line iteration order to benchmark winner
alfadur
parents:
13969
diff
changeset
|
266 |
for vector in ArcPoints::new(radius) { |
a1895019bb94
change draw_thick_line iteration order to benchmark winner
alfadur
parents:
13969
diff
changeset
|
267 |
for delta in EquidistantPoints::new(vector) { |
14097
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14073
diff
changeset
|
268 |
for point in line.into_iter() { |
13967 | 269 |
self.map_point(point + delta, |p| { |
270 |
if *p != value { |
|
271 |
*p = value; |
|
272 |
result += 1; |
|
273 |
} |
|
274 |
}) |
|
13965
4162ea9ae333
Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents:
13964
diff
changeset
|
275 |
} |
13964
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
276 |
} |
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
277 |
} |
a325ed57ebfe
Don't generate unnecessary duplication in case of equal coordinates
unc0rr
parents:
13961
diff
changeset
|
278 |
|
13965
4162ea9ae333
Use integral-geometry iterators to implement Land2D::draw_thick_line, remove no longer unused functions from Land2D
unc0rr
parents:
13964
diff
changeset
|
279 |
result |
13955
9c112f2ae02d
Raise levels of abstraction to implement draw_thick_line() avoiding code duplication
unc0rr
parents:
13952
diff
changeset
|
280 |
} |
13938 | 281 |
} |
282 |
||
14165 | 283 |
impl<T> Index<usize> for Land2D<T> { |
284 |
type Output = [T]; |
|
285 |
#[inline] |
|
286 |
fn index(&self, row: usize) -> &[T] { |
|
287 |
&self.pixels[row] |
|
288 |
} |
|
289 |
} |
|
290 |
||
13938 | 291 |
#[cfg(test)] |
292 |
mod tests { |
|
293 |
use super::*; |
|
294 |
||
295 |
#[test] |
|
296 |
fn basics() { |
|
14073 | 297 |
let l: Land2D<u8> = Land2D::new(Size::new(30, 50), 0); |
14071
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
298 |
|
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
299 |
assert_eq!(l.play_width(), 30); |
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
300 |
assert_eq!(l.play_height(), 50); |
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
301 |
assert_eq!(l.width(), 32); |
4b40bdd214df
Use next_power_of_two() just like hedgewars engine does, expose original and real dimensions
unc0rr
parents:
13972
diff
changeset
|
302 |
assert_eq!(l.height(), 64); |
13938 | 303 |
|
304 |
assert!(l.is_valid_coordinate(0, 0)); |
|
305 |
assert!(!l.is_valid_coordinate(-1, -1)); |
|
306 |
||
307 |
assert!(l.is_valid_coordinate(31, 63)); |
|
308 |
assert!(!l.is_valid_coordinate(32, 63)); |
|
309 |
assert!(!l.is_valid_coordinate(31, 64)); |
|
310 |
} |
|
311 |
||
13945 | 312 |
#[test] |
313 |
fn fill() { |
|
14053 | 314 |
let mut l: Land2D<u8> = Land2D::new(Size::square(128), 0); |
13945 | 315 |
|
14097
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14073
diff
changeset
|
316 |
l.draw_line(Line::new(Point::new(0, 0), Point::new(32, 96)), 1); |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14073
diff
changeset
|
317 |
l.draw_line(Line::new(Point::new(32, 96), Point::new(64, 32)), 1); |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14073
diff
changeset
|
318 |
l.draw_line(Line::new(Point::new(64, 32), Point::new(96, 80)), 1); |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14073
diff
changeset
|
319 |
l.draw_line(Line::new(Point::new(96, 80), Point::new(128, 0)), 1); |
13945 | 320 |
|
14097
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14073
diff
changeset
|
321 |
l.draw_line(Line::new(Point::new(0, 128), Point::new(64, 96)), 1); |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14073
diff
changeset
|
322 |
l.draw_line(Line::new(Point::new(128, 128), Point::new(64, 96)), 1); |
13945 | 323 |
|
13969 | 324 |
l.fill(Point::new(32, 32), 1, 2); |
325 |
l.fill(Point::new(16, 96), 1, 3); |
|
326 |
l.fill(Point::new(60, 100), 1, 4); |
|
13945 | 327 |
|
328 |
assert_eq!(l.pixels[0][0], 1); |
|
329 |
assert_eq!(l.pixels[96][64], 1); |
|
330 |
||
331 |
assert_eq!(l.pixels[40][32], 2); |
|
332 |
assert_eq!(l.pixels[40][96], 2); |
|
333 |
assert_eq!(l.pixels[5][0], 3); |
|
334 |
assert_eq!(l.pixels[120][0], 3); |
|
335 |
assert_eq!(l.pixels[5][127], 3); |
|
336 |
assert_eq!(l.pixels[120][127], 3); |
|
337 |
assert_eq!(l.pixels[35][64], 3); |
|
338 |
assert_eq!(l.pixels[120][20], 4); |
|
339 |
assert_eq!(l.pixels[120][100], 4); |
|
340 |
assert_eq!(l.pixels[100][64], 4); |
|
341 |
} |
|
13938 | 342 |
} |