本文整理汇总了C++中Stroke::get_bounding_rect方法的典型用法代码示例。如果您正苦于以下问题:C++ Stroke::get_bounding_rect方法的具体用法?C++ Stroke::get_bounding_rect怎么用?C++ Stroke::get_bounding_rect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Stroke
的用法示例。
在下文中一共展示了Stroke::get_bounding_rect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Rect
void
DrawingContext::draw_stroke(const Stroke& stroke, DrawingParameter* param)
{
Rect rect = stroke.get_bounding_rect();
rect.left -= param->thickness()/2;
rect.top -= param->thickness()/2;
rect.right += param->thickness()/2;
rect.bottom += param->thickness()/2;
clip_to(rect, Rect(0, 0, get_width(), get_height()));
stroke_buffer->clear(rect);
stroke_buffer->set_param(param);
stroke_buffer->draw_stroke(stroke, param);
stroke_buffer->draw(drawable, rect, 0, 0);
screen_buffer->mark_dirty(rect);
// FIXME: Limit this to what changed on the buffer instead of whole screen
navigation->update();
}