Copy all the controls from another ControlArray (from to ) to the ControlArray
| 12 | |
| 13 | // Copy all the controls from another ControlArray (from <begin> to <end>) to the ControlArray <ctrl> |
| 14 | inline void copy_ctrl(PatchControlIter ctrl, PatchControlConstIter begin, PatchControlConstIter end) |
| 15 | { |
| 16 | std::copy(begin, end, ctrl); |
| 17 | } |
| 18 | |
| 19 | inline void PatchControlArray_invert(PatchControlArray& ctrl, std::size_t width, std::size_t height) |
| 20 | { |
no test coverage detected