本文整理汇总了C++中gfx::Canvas::DrawLine方法的典型用法代码示例。如果您正苦于以下问题:C++ Canvas::DrawLine方法的具体用法?C++ Canvas::DrawLine怎么用?C++ Canvas::DrawLine使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gfx::Canvas
的用法示例。
在下文中一共展示了Canvas::DrawLine方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: DrawBevel
/*
** Draws a bevel inside the given area
*/
void Meter::DrawBevel(Gfx::Canvas& canvas, const D2D1_RECT_F& rect, const D2D1_COLOR_F& light, const D2D1_COLOR_F& dark)
{
const FLOAT l = rect.left;
const FLOAT r = rect.right - 1.0f;
const FLOAT t = rect.top;
const FLOAT b = rect.bottom - 1.0f;
canvas.DrawLine(light, l, t, l, b, 2.0f);
canvas.DrawLine(light, l, t, r, t, 2.0f);
canvas.DrawLine(light, l + 1.0f, t + 1.0f, l + 1.0f, b - 1.0f, 2.0f);
canvas.DrawLine(light, l + 1.0f, t + 1.0f, r - 1.0f, t + 1.0f, 2.0f);
canvas.DrawLine(dark, l, b, r, b, 2.0f);
canvas.DrawLine(dark, r, t, r, b, 2.0f);
canvas.DrawLine(dark, l + 1.0f, b - 1.0f, r - 1.0f, b - 1.0f, 2.0f);
canvas.DrawLine(dark, r - 1.0f, t + 1.0f, r - 1.0f, b - 1.0f, 2.0f);
}