本文整理匯總了C#中Color.Intify方法的典型用法代碼示例。如果您正苦於以下問題:C# Color.Intify方法的具體用法?C# Color.Intify怎麽用?C# Color.Intify使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Color
的用法示例。
在下文中一共展示了Color.Intify方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: FillQuad
public static void FillQuad(this IntPtr bmp, int width, int height, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, Color color)
{
var col = color.Intify();
bmp.FillQuad(width, height, x1, y1, x2, y2, x3, y3, x4, y4, col);
}
示例2: DrawLine
public static void DrawLine(this RenderContext context, Point p1, Point p2, Color color)
{
context.DrawLine(p1, p2, color.Intify());
}
示例3: DrawEllipse
public static void DrawEllipse(this RenderContext context, VectorD center, VectorD radius, Color color)
{
context.BackBuffer.DrawEllipse((int) center.X, (int) center.Y, (int) radius.X, (int) radius.Y, color.Intify(), context.Width,
context.Height);
}
示例4: DrawLineVector
public static void DrawLineVector(this IntPtr target, VectorD start, VectorD stop, Color colour, int width, int height)
{
var col = colour.Intify();
target.DrawLineVector(start, stop, (d, d1, position) => col, width, height);
}