| 54 | //STL |
| 55 | template<typename Matrix_, typename ...Args_> |
| 56 | DTL_VERSIONING_CPP14_CONSTEXPR |
| 57 | typename DTL_TYPE_ENABLE_IF<Matrix_::is_jagged::value, bool>::DTL_TYPE_EITYPE |
| 58 | drawNormal(Matrix_&& matrix_, Args_&& ... args_) const noexcept { |
| 59 | const Index_Size end_y_{ this->calcEndY(matrix_.getY()) }; |
| 60 | for (Index_Size row{ this->start_y }; row < end_y_; ++row) { |
| 61 | const Index_Size end_x_{ this->calcEndX(matrix_.getX(row)) }; |
| 62 | for (Index_Size col{ this->start_x }; col < end_x_; ++col) |
| 63 | matrix_.set(col, row, this->draw_value, args_...); |
| 64 | } |
| 65 | return true; |
| 66 | } |
| 67 | |
| 68 | //Normal |
| 69 | template<typename Matrix_, typename ...Args_> |
no test coverage detected