OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CC_BASE_SPIRAL_ITERATOR_H_ | 5 #ifndef CC_BASE_SPIRAL_ITERATOR_H_ |
6 #define CC_BASE_SPIRAL_ITERATOR_H_ | 6 #define CC_BASE_SPIRAL_ITERATOR_H_ |
7 | 7 |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "cc/base/cc_export.h" | 9 #include "cc/base/cc_export.h" |
10 #include "cc/base/index_rect.h" | 10 #include "cc/base/index_rect.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 // 3 │ 19│ 6│ 7│ 8│ 9│ | 26 // 3 │ 19│ 6│ 7│ 8│ 9│ |
27 // ├───┼───┼───┼───┼───┤ | 27 // ├───┼───┼───┼───┼───┤ |
28 // 4 │ 20│ 21│ 22│ 23│ 24│ | 28 // 4 │ 20│ 21│ 22│ 23│ 24│ |
29 // └───┴───┴───┴───┴───┘ | 29 // └───┴───┴───┴───┴───┘ |
30 class CC_EXPORT SpiralIterator { | 30 class CC_EXPORT SpiralIterator { |
31 public: | 31 public: |
32 SpiralIterator(); | 32 SpiralIterator(); |
33 SpiralIterator(const IndexRect& around_index_rect, | 33 SpiralIterator(const IndexRect& around_index_rect, |
34 const IndexRect& consider_index_rect, | 34 const IndexRect& consider_index_rect, |
35 const IndexRect& ignore_index_rect); | 35 const IndexRect& ignore_index_rect); |
| 36 SpiralIterator(const SpiralIterator& other); |
| 37 SpiralIterator(SpiralIterator&& other); |
| 38 ~SpiralIterator(); |
36 | 39 |
37 ~SpiralIterator() = default; | 40 SpiralIterator& operator=(const SpiralIterator& other); |
| 41 SpiralIterator& operator=(SpiralIterator&& other); |
38 | 42 |
39 operator bool() const; | 43 operator bool() const; |
40 SpiralIterator& operator++(); | 44 SpiralIterator& operator++(); |
41 int index_x() const { return index_x_; } | 45 int index_x() const { return index_x_; } |
42 int index_y() const { return index_y_; } | 46 int index_y() const { return index_y_; } |
43 | 47 |
44 private: | 48 private: |
45 int current_step_count() const { | 49 int current_step_count() const { |
46 return (direction_ == UP || direction_ == DOWN) ? vertical_step_count_ | 50 return (direction_ == UP || direction_ == DOWN) ? vertical_step_count_ |
47 : horizontal_step_count_; | 51 : horizontal_step_count_; |
(...skipping 14 matching lines...) Expand all Loading... |
62 int delta_x_; | 66 int delta_x_; |
63 int delta_y_; | 67 int delta_y_; |
64 int current_step_; | 68 int current_step_; |
65 int horizontal_step_count_; | 69 int horizontal_step_count_; |
66 int vertical_step_count_; | 70 int vertical_step_count_; |
67 }; | 71 }; |
68 | 72 |
69 } // namespace cc | 73 } // namespace cc |
70 | 74 |
71 #endif // CC_BASE_SPIRAL_ITERATOR_H_ | 75 #endif // CC_BASE_SPIRAL_ITERATOR_H_ |
OLD | NEW |