Example #1
0
 /// <summary>
 ///     Draws a simple (filled) rectangle with the given color
 /// </summary>
 /// <param name="color"></param>
 /// <param name="rect"></param>
 /// <param name="allMonitors">Render on all monitors</param>
 public static void DrawRect(SColorF color, SRectF rect, bool allMonitors = true)
 {
     _Draw.DrawRect(color, rect, allMonitors);
 }
Example #2
0
 /// <summary>
 ///     Draws a simple (filled) rectangle with the given color
 /// </summary>
 /// <param name="color"></param>
 /// <param name="rect"></param>
 public static void DrawRect(SColorF color, SRectF rect)
 {
     _Draw.DrawRect(color, rect);
 }