Copies all values from source to target, until the source sequence is depleted Returns the new position of the target iterator
| 196 | // Copies all values from source to target, until the source sequence is depleted |
| 197 | // Returns the new position of the target iterator |
| 198 | inline void assignPatchControls(const PatchControlIterator& source, PatchControlIterator& target) |
| 199 | { |
| 200 | auto& t = target; |
| 201 | for (auto s = source; s.isValid() && t.isValid(); ++s, ++t) |
| 202 | { |
| 203 | t->vertex = s->vertex; |
| 204 | t->texcoord = s->texcoord; |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | enum class EdgeType |
| 209 | { |
no test coverage detected