本文整理汇总了C++中Extension::bottom方法的典型用法代码示例。如果您正苦于以下问题:C++ Extension::bottom方法的具体用法?C++ Extension::bottom怎么用?C++ Extension::bottom使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Extension
的用法示例。
在下文中一共展示了Extension::bottom方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: set_damage_area
void XYView::set_damage_area(Canvas* c) {
Extension e;
c->restrict_damage(0.,0., c->width(), c->height());
c->damage_area(e);
const float off = c->to_coord(1);
c->transformer().inverse_transform(e.left()-off, e.bottom()-off, xd1_, yd1_);
c->transformer().inverse_transform(e.right()+off, e.top()+off, xd2_, yd2_);
}
示例2: draw
void Scrollable::draw(Canvas* c, const Allocation& a) const {
c->damage(0, 0, width_, height_);
Extension e;
e.set(c, a);
c->push_clipping();
c->push_transform();
c->transformer(Transformer());
c->clip_rect(e.left(), e.bottom(), e.right(), e.top());
Patch::draw(c, a);
c->pop_transform();
c->pop_clipping();
}
示例3: draw
void DebugGlyph::draw(Canvas* c, const Allocation& a) const {
if ((flags_ & trace_draw) != 0) {
heading("draw ");
print_allotment(a.allotment(Dimension_X));
printf(", ");
print_allotment(a.allotment(Dimension_Y));
if (c != nil) {
Extension e;
c->damage_area(e);
printf(
" [%.2f,%.2f %.2f,%.2f]",
e.left(), e.bottom(), e.right(), e.top()
);
}
printf("\n");
}
MonoGlyph::draw(c, a);
}