本文整理汇总了C++中DRect::left方法的典型用法代码示例。如果您正苦于以下问题:C++ DRect::left方法的具体用法?C++ DRect::left怎么用?C++ DRect::left使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DRect
的用法示例。
在下文中一共展示了DRect::left方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
void _DPlane<T>::draw(const DRect &rect, T color)
{
for(int i=rect.top(); i <= rect.bottom(); i++)
{
if(i >= 0 && i < _DMatrix<T>::rows() && rect.left() >= 0 && rect.left() < _DMatrix<T>::cols())
(*this)[i][rect.left()] = color;
if(i >= 0 && i < _DMatrix<T>::rows() && rect.right() >= 0 && rect.right() < _DMatrix<T>::cols())
(*this)[i][rect.right()] = color;
}
for(int j=rect.left(); j <= rect.right(); j++)
{
if(rect.top() >= 0 && rect.top() < _DMatrix<T>::rows() && j >= 0 && j < _DMatrix<T>::cols())
(*this)[rect.top()][j] = color;
if(rect.bottom() >= 0 && rect.bottom() < _DMatrix<T>::rows() && j >= 0 && j < _DMatrix<T>::cols())
(*this)[rect.bottom()][j] = color;
}
}