Beispiel #1
0
 public static void DrawCircleInRectangle(this IUGContext context, Vector2 point, float length, UGColor color)
 => context.DrawCircleInRectangle(point.X, point.Y, length, color, 1F);
Beispiel #2
0
 public static void DrawCircleInRectangle(this IUGContext context, Vector2 point, float length, UGColor color, float strokeWidth, UGStrokeStyle strokeStyle)
 => context.DrawCircleInRectangle(point.X, point.Y, length, color, strokeWidth, strokeStyle);
Beispiel #3
0
 public static void DrawCircleInRectangle(this IUGContext context, float x, float y, float length, UGColor color)
 => context.DrawCircleInRectangle(x, y, length, color, 1F);